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

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

Issue 1569213003: Eliminate phase parameter in constructors (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/parser.cc ('k') | no next file » | 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/growable_array.h" 8 #include "vm/growable_array.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 #include "vm/snapshot_ids.h" 10 #include "vm/snapshot_ids.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 V(AddError, "addError") \ 50 V(AddError, "addError") \
51 V(AddStream, "addStream") \ 51 V(AddStream, "addStream") \
52 V(Cancel, "cancel") \ 52 V(Cancel, "cancel") \
53 V(Close, "close") \ 53 V(Close, "close") \
54 V(Values, "values") \ 54 V(Values, "values") \
55 V(_EnumNames, "_enum_names") \ 55 V(_EnumNames, "_enum_names") \
56 V(ExprTemp, ":expr_temp") \ 56 V(ExprTemp, ":expr_temp") \
57 V(AnonymousClosure, "<anonymous closure>") \ 57 V(AnonymousClosure, "<anonymous closure>") \
58 V(ImplicitClosure, "<implicit closure>") \ 58 V(ImplicitClosure, "<implicit closure>") \
59 V(ClosureParameter, ":closure") \ 59 V(ClosureParameter, ":closure") \
60 V(PhaseParameter, ":phase") \
61 V(TypeArgumentsParameter, ":type_arguments") \ 60 V(TypeArgumentsParameter, ":type_arguments") \
62 V(AssertionError, "_AssertionError") \ 61 V(AssertionError, "_AssertionError") \
63 V(CastError, "_CastError") \ 62 V(CastError, "_CastError") \
64 V(TypeError, "_TypeError") \ 63 V(TypeError, "_TypeError") \
65 V(FallThroughError, "FallThroughError") \ 64 V(FallThroughError, "FallThroughError") \
66 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ 65 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \
67 V(NoSuchMethodError, "NoSuchMethodError") \ 66 V(NoSuchMethodError, "NoSuchMethodError") \
68 V(CyclicInitializationError, "CyclicInitializationError") \ 67 V(CyclicInitializationError, "CyclicInitializationError") \
69 V(ThrowNew, "_throwNew") \ 68 V(ThrowNew, "_throwNew") \
70 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ 69 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 friend class SnapshotReader; 654 friend class SnapshotReader;
656 friend class SnapshotWriter; 655 friend class SnapshotWriter;
657 friend class ApiMessageReader; 656 friend class ApiMessageReader;
658 657
659 DISALLOW_COPY_AND_ASSIGN(Symbols); 658 DISALLOW_COPY_AND_ASSIGN(Symbols);
660 }; 659 };
661 660
662 } // namespace dart 661 } // namespace dart
663 662
664 #endif // VM_SYMBOLS_H_ 663 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698