зеркало из https://github.com/github/codeql.git
add `getBoolValue()` as a utility predicate on `BooleanLiteral`
This commit is contained in:
Родитель
2f8c9a5a2c
Коммит
3f0fe96f85
|
@ -379,7 +379,10 @@ class NullLiteral extends @null_literal, Literal { }
|
|||
* false
|
||||
* ```
|
||||
*/
|
||||
class BooleanLiteral extends @boolean_literal, Literal { }
|
||||
class BooleanLiteral extends @boolean_literal, Literal {
|
||||
/** Gets the value of this literal. */
|
||||
boolean getBoolValue() { if this.getRawValue() = "true" then result = true else result = false }
|
||||
}
|
||||
|
||||
/**
|
||||
* A numeric literal.
|
||||
|
|
Загрузка…
Ссылка в новой задаче