Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1718)

Unified Diff: runtime/vm/ast.h

Issue 447003003: Introduce await (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/ast_printer.cc » ('j') | runtime/vm/ast_transformer.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/ast.h
diff --git a/runtime/vm/ast.h b/runtime/vm/ast.h
index 03d65a06f3561c9161e330c1ec2dadd0a08eb75a..fb84f326d115cd5104d638152584a5771d207788 100644
--- a/runtime/vm/ast.h
+++ b/runtime/vm/ast.h
@@ -16,6 +16,7 @@
namespace dart {
#define FOR_EACH_NODE(V) \
+ V(Await) \
V(Return) \
V(Literal) \
V(Type) \
@@ -146,6 +147,28 @@ class AstNode : public ZoneAllocated {
};
+class AwaitNode : public AstNode {
+ public:
+ AwaitNode(intptr_t token_pos, AstNode* expr)
+ : AstNode(token_pos),
+ expr_(expr) {
+ }
+
+ void VisitChildren(AstNodeVisitor* visitor) const {
+ expr_->Visit(visitor);
+ }
+
+ AstNode* expr() const { return expr_; }
+
+ DECLARE_COMMON_NODE_FUNCTIONS(AwaitNode);
+
+ private:
+ AstNode* expr_;
+
+ DISALLOW_COPY_AND_ASSIGN(AwaitNode);
+};
+
+
class SequenceNode : public AstNode {
public:
SequenceNode(intptr_t token_pos, LocalScope* scope)
« no previous file with comments | « no previous file | runtime/vm/ast_printer.cc » ('j') | runtime/vm/ast_transformer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698