Skip to content

Commit 2f042c6

Browse files
Merge pull request #1278 from RumbleDB/This
This
2 parents 771cc06 + 0fd4c3a commit 2f042c6

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ target/
77
.ipynb_checkpoints/
88
*.iml
99
/bin/
10-
*.jar
10+
rumble*.jar
1111
*.*~
1212

1313
# for now ignore jsound package

src/main/java/org/rumbledb/expressions/primary/InlineFunctionExpression.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public StatementsAndOptionalExpr getBody() {
138138

139139
@Nullable
140140
public List<Annotation> getAnnotations() {
141-
return annotations;
141+
return this.annotations;
142142
}
143143

144144
@Override
@@ -252,7 +252,7 @@ public void serializeToJSONiq(StringBuffer sb, int indent) {
252252
}
253253

254254
public boolean hasSequentialPropertyAnnotation() {
255-
return hasSequentialPropertyAnnotation;
255+
return this.hasSequentialPropertyAnnotation;
256256
}
257257

258258
public void setHasExitStatement(boolean hasExitStatement) {

src/main/java/org/rumbledb/expressions/scripting/block/BlockStatement.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public <T> T accept(AbstractNodeVisitor<T> visitor, T argument) {
2727
@Override
2828
public List<Node> getChildren() {
2929
List<Node> result = new ArrayList<>();
30-
blockStatements.forEach(statement -> {
30+
this.blockStatements.forEach(statement -> {
3131
if (statement != null) {
3232
result.add(statement);
3333
}
@@ -49,6 +49,6 @@ public void serializeToJSONiq(StringBuffer sb, int indent) {
4949
}
5050

5151
public List<Statement> getBlockStatements() {
52-
return blockStatements;
52+
return this.blockStatements;
5353
}
5454
}

src/main/java/org/rumbledb/expressions/scripting/control/SwitchStatement.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ public void serializeToJSONiq(StringBuffer sb, int indent) {
7474
}
7575

7676
public Expression getTestCondition() {
77-
return testCondition;
77+
return this.testCondition;
7878
}
7979

8080
public List<SwitchCaseStatement> getCases() {
81-
return cases;
81+
return this.cases;
8282
}
8383

8484
public Statement getDefaultStatement() {
85-
return defaultStatement;
85+
return this.defaultStatement;
8686
}
8787
}

src/main/java/org/rumbledb/expressions/scripting/loops/ExitStatement.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void serializeToJSONiq(StringBuffer sb, int indent) {
3434
}
3535

3636
public Expression getExitExpression() {
37-
return exitExpression;
37+
return this.exitExpression;
3838
}
3939

4040
}

0 commit comments

Comments
 (0)