Add exponentiation operator
This commit is contained in:
committed by
Richard van Velzen
parent
2246c79318
commit
6eaeb19a4a
@@ -538,7 +538,13 @@ function OutputStream(options) {
|
||||
PARENS([ AST_Unary, AST_Undefined ], function(output){
|
||||
var p = output.parent();
|
||||
return p instanceof AST_PropAccess && p.expression === this
|
||||
|| p instanceof AST_New;
|
||||
|| p instanceof AST_New
|
||||
|| p instanceof AST_Binary
|
||||
&& p.operator === "**"
|
||||
&& this instanceof AST_UnaryPrefix
|
||||
&& p.left === this
|
||||
&& this.operator !== "++"
|
||||
&& this.operator !== "--";
|
||||
});
|
||||
|
||||
PARENS(AST_Seq, function(output){
|
||||
|
||||
Reference in New Issue
Block a user