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

Side by Side Diff: runtime/vm/symbols.h

Issue 11342027: Handle super call to unary operators (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define VM_SYMBOLS_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
11 namespace dart { 11 namespace dart {
12 12
13 // Forward declarations. 13 // Forward declarations.
14 class Isolate; 14 class Isolate;
15 class ObjectPointerVisitor; 15 class ObjectPointerVisitor;
16 16
17 #define PREDEFINED_SYMBOLS_LIST(V) \ 17 #define PREDEFINED_SYMBOLS_LIST(V) \
18 V(Empty, "") \ 18 V(Empty, "") \
19 V(Dot, ".") \ 19 V(Dot, ".") \
20 V(Equals, "=") \ 20 V(Equals, "=") \
21 V(EqualOperator, "==") \ 21 V(EqualOperator, "==") \
22 V(Identical, "identical") \ 22 V(Identical, "identical") \
23 V(IndexToken, "[]") \ 23 V(IndexToken, "[]") \
24 V(AssignIndexToken, "[]=") \ 24 V(AssignIndexToken, "[]=") \
25 V(TopLevel, "::") \ 25 V(TopLevel, "::") \
26 V(DefaultLabel, ":L") \ 26 V(DefaultLabel, ":L") \
27 V(This, "this") \ 27 V(This, "this") \
28 V(Super, "super") \
28 V(HasNext, "hasNext") \ 29 V(HasNext, "hasNext") \
29 V(Next, "next") \ 30 V(Next, "next") \
30 V(Value, "value") \ 31 V(Value, "value") \
31 V(ExprTemp, ":expr_temp") \ 32 V(ExprTemp, ":expr_temp") \
32 V(AnonymousClosure, "<anonymous closure>") \ 33 V(AnonymousClosure, "<anonymous closure>") \
33 V(PhaseParameter, ":phase") \ 34 V(PhaseParameter, ":phase") \
34 V(TypeArgumentsParameter, ":type_arguments") \ 35 V(TypeArgumentsParameter, ":type_arguments") \
35 V(AssertionError, "AssertionErrorImplementation") \ 36 V(AssertionError, "AssertionErrorImplementation") \
36 V(TypeError, "TypeErrorImplementation") \ 37 V(TypeError, "TypeErrorImplementation") \
37 V(FallThroughError, "FallThroughErrorImplementation") \ 38 V(FallThroughError, "FallThroughErrorImplementation") \
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 friend class SnapshotReader; 224 friend class SnapshotReader;
224 friend class SnapshotWriter; 225 friend class SnapshotWriter;
225 friend class ApiMessageReader; 226 friend class ApiMessageReader;
226 227
227 DISALLOW_COPY_AND_ASSIGN(Symbols); 228 DISALLOW_COPY_AND_ASSIGN(Symbols);
228 }; 229 };
229 230
230 } // namespace dart 231 } // namespace dart
231 232
232 #endif // VM_SYMBOLS_H_ 233 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698