mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
213 B
Plaintext
8 lines
213 B
Plaintext
import javascript
|
|
|
|
query predicate test_query4(AddExpr add, string res) {
|
|
exists(ShiftExpr shift | add = shift.getAnOperand() |
|
|
res = "This expression should be bracketed to clarify precedence rules."
|
|
)
|
|
}
|