Supported another case of when expression.

This commit is contained in:
Pavel Talanov
2011-11-17 17:39:44 +04:00
parent bd33b23f51
commit d0239085c1
6 changed files with 42 additions and 9 deletions
@@ -269,7 +269,7 @@ public class AstUtil {
return result;
}
public static JsPrefixOperation negation(JsExpression expression) {
public static JsPrefixOperation negated(JsExpression expression) {
return new JsPrefixOperation(JsUnaryOperator.NOT, expression);
}
}