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

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

Issue 735723003: Implement enum types in VM (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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
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
(...skipping 13 matching lines...) Expand all
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(Other, "other") \ 28 V(Other, "other") \
29 V(Super, "super") \ 29 V(Super, "super") \
30 V(Call, "call") \ 30 V(Call, "call") \
31 V(Current, "current") \ 31 V(Current, "current") \
32 V(MoveNext, "moveNext") \ 32 V(MoveNext, "moveNext") \
33 V(Value, "value") \ 33 V(Value, "value") \
34 V(_EnumHelper, "_EnumHelper") \
35 V(Values, "values") \
36 V(_EnumNames, "_enum_names") \
34 V(ExprTemp, ":expr_temp") \ 37 V(ExprTemp, ":expr_temp") \
35 V(AnonymousClosure, "<anonymous closure>") \ 38 V(AnonymousClosure, "<anonymous closure>") \
36 V(ClosureParameter, ":closure") \ 39 V(ClosureParameter, ":closure") \
37 V(PhaseParameter, ":phase") \ 40 V(PhaseParameter, ":phase") \
38 V(TypeArgumentsParameter, ":type_arguments") \ 41 V(TypeArgumentsParameter, ":type_arguments") \
39 V(AssertionError, "_AssertionError") \ 42 V(AssertionError, "_AssertionError") \
40 V(CastError, "_CastError") \ 43 V(CastError, "_CastError") \
41 V(TypeError, "_TypeError") \ 44 V(TypeError, "_TypeError") \
42 V(FallThroughError, "FallThroughError") \ 45 V(FallThroughError, "FallThroughError") \
43 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ 46 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 V(SpaceExtendsSpace, " extends ") \ 281 V(SpaceExtendsSpace, " extends ") \
279 V(SwitchExpr, ":switch_expr") \ 282 V(SwitchExpr, ":switch_expr") \
280 V(TwoNewlines, "\n\n") \ 283 V(TwoNewlines, "\n\n") \
281 V(TwoSpaces, " ") \ 284 V(TwoSpaces, " ") \
282 V(_instanceOf, "_instanceOf") \ 285 V(_instanceOf, "_instanceOf") \
283 V(_as, "_as") \ 286 V(_as, "_as") \
284 V(GetterPrefix, "get:") \ 287 V(GetterPrefix, "get:") \
285 V(SetterPrefix, "set:") \ 288 V(SetterPrefix, "set:") \
286 V(InitPrefix, "init:") \ 289 V(InitPrefix, "init:") \
287 V(_New, "_new") \ 290 V(_New, "_new") \
291 V(Index, "index") \
288 V(DartScheme, "dart:") \ 292 V(DartScheme, "dart:") \
289 V(DartSchemePrivate, "dart:_") \ 293 V(DartSchemePrivate, "dart:_") \
290 V(DartNativeWrappers, "dart:nativewrappers") \ 294 V(DartNativeWrappers, "dart:nativewrappers") \
291 V(DartNativeWrappersLibName, "dart.nativewrappers") \ 295 V(DartNativeWrappersLibName, "dart.nativewrappers") \
292 V(DartCore, "dart:core") \ 296 V(DartCore, "dart:core") \
293 V(DartCollection, "dart:collection") \ 297 V(DartCollection, "dart:collection") \
294 V(DartInternal, "dart:_internal") \ 298 V(DartInternal, "dart:_internal") \
295 V(DartIsolate, "dart:isolate") \ 299 V(DartIsolate, "dart:isolate") \
296 V(DartMirrors, "dart:mirrors") \ 300 V(DartMirrors, "dart:mirrors") \
297 V(DartTypedData, "dart:typed_data") \ 301 V(DartTypedData, "dart:typed_data") \
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 friend class SnapshotReader; 520 friend class SnapshotReader;
517 friend class SnapshotWriter; 521 friend class SnapshotWriter;
518 friend class ApiMessageReader; 522 friend class ApiMessageReader;
519 523
520 DISALLOW_COPY_AND_ASSIGN(Symbols); 524 DISALLOW_COPY_AND_ASSIGN(Symbols);
521 }; 525 };
522 526
523 } // namespace dart 527 } // namespace dart
524 528
525 #endif // VM_SYMBOLS_H_ 529 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/vm/method_recognizer.h ('K') | « runtime/vm/parser.cc ('k') | runtime/vm/token.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698