We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc7fef3 commit 8dad622Copy full SHA for 8dad622
swift/ql/lib/codeql/swift/elements/expr/BooleanLiteralExpr.qll
@@ -1,7 +1,7 @@
1
private import codeql.swift.generated.expr.BooleanLiteralExpr
2
3
/**
4
- * An integer literal. For example `true` in:
+ * A boolean literal. For example `true` in:
5
* ```
6
* let x = true
7
swift/ql/lib/codeql/swift/elements/expr/FloatLiteralExpr.qll
@@ -2,4 +2,6 @@ private import codeql.swift.generated.expr.FloatLiteralExpr
class FloatLiteralExpr extends Generated::FloatLiteralExpr {
override string toString() { result = this.getStringValue() }
+
+ override string getValueString() { result = this.getStringValue() }
}
0 commit comments