File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/main/java/org/piccode/ast Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -110,15 +110,15 @@ public PiccodeValue execute(Integer frame) {
110110
111111 if (left instanceof PiccodeBoolean lf && right instanceof PiccodeBoolean rh ) {
112112 if (op .equals ("&&" )){
113- var left = (boolean ) lf .raw ();
114- var right = (boolean ) rh .raw ();
115- return new PiccodeBoolean (String .valueof ( left && right ));
113+ var _left = (boolean ) lf .raw ();
114+ var _right = (boolean ) rh .raw ();
115+ return new PiccodeBoolean (String .valueOf ( _left && _right ));
116116 }
117117
118118 if (op .equals ("||" )) {
119- var left = (boolean ) lf .raw ();
120- var right = (boolean ) rh .raw ();
121- return new PiccodeBoolean (String .valueof ( left || right ));
119+ var _left = (boolean ) lf .raw ();
120+ var _right = (boolean ) rh .raw ();
121+ return new PiccodeBoolean (String .valueOf ( _left || _right ));
122122 }
123123 }
124124
You can’t perform that action at this time.
0 commit comments