first cut of async/await (#2098)
- async arrow functions not yet supported fixes #1789
This commit is contained in:
@@ -199,6 +199,10 @@ TreeTransformer.prototype = new TreeWalker;
|
||||
if (self.expression) self.expression = self.expression.transform(tw);
|
||||
});
|
||||
|
||||
_(AST_Await, function(self, tw){
|
||||
self.expression = self.expression.transform(tw);
|
||||
});
|
||||
|
||||
_(AST_Unary, function(self, tw){
|
||||
self.expression = self.expression.transform(tw);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user