bug fixes:
1. Range standard implementation size property fixed, iteration order fixed 2. System.println() without parameters fixed.
This commit is contained in:
@@ -335,4 +335,8 @@ public class AstUtil {
|
||||
public static JsBinaryOperation subtract(JsExpression left, JsExpression right) {
|
||||
return new JsBinaryOperation(JsBinaryOperator.SUB, left, right);
|
||||
}
|
||||
|
||||
public static JsPrefixOperation not(JsExpression expression) {
|
||||
return new JsPrefixOperation(JsUnaryOperator.NOT, expression);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user