Supported (Variable is Type expression) for user defined classes.

This commit is contained in:
Pavel Talanov
2011-11-17 14:14:47 +04:00
parent 9d848cb8a5
commit fec7539f8c
21 changed files with 348 additions and 44 deletions
@@ -268,4 +268,8 @@ public class AstUtil {
result.setStatements(statements);
return result;
}
public static JsPrefixOperation negation(JsExpression expression) {
return new JsPrefixOperation(JsUnaryOperator.NOT, expression);
}
}