// generated by codegen, do not edit import codeql.rust.elements import TestUtils query predicate instances(LiteralExpr x) { toBeTested(x) and not x.isUnknown() } query predicate getAttr(LiteralExpr x, int index, Attr getAttr) { toBeTested(x) and not x.isUnknown() and getAttr = x.getAttr(index) } query predicate getTextValue(LiteralExpr x, string getTextValue) { toBeTested(x) and not x.isUnknown() and getTextValue = x.getTextValue() }