We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 107b091 commit 34f70afCopy full SHA for 34f70af
javascript/ql/src/Expressions/MissingSpaceInAppend.ql
@@ -14,17 +14,11 @@
14
15
import javascript
16
17
-Expr rightChild(Expr e) {
18
- result = e.(AddExpr).getRightOperand()
19
-}
+Expr rightChild(Expr e) { result = e.(AddExpr).getRightOperand() }
20
21
-Expr leftChild(Expr e) {
22
- result = e.(AddExpr).getLeftOperand()
23
+Expr leftChild(Expr e) { result = e.(AddExpr).getLeftOperand() }
24
25
-predicate isInConcat(Expr e) {
26
- exists(AddExpr a | a.getAnOperand() = e)
27
+predicate isInConcat(Expr e) { exists(AddExpr a | a.getAnOperand() = e) }
28
29
class ConcatenationLiteral extends Expr {
30
ConcatenationLiteral() {
0 commit comments