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

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

Issue 2064663002: Make VM accept function values in assert statements. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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
« runtime/vm/parser.cc ('K') | « 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 V(TypeArgumentsParameter, ":type_arguments") \ 64 V(TypeArgumentsParameter, ":type_arguments") \
65 V(AssertionError, "_AssertionError") \ 65 V(AssertionError, "_AssertionError") \
66 V(CastError, "_CastError") \ 66 V(CastError, "_CastError") \
67 V(TypeError, "_TypeError") \ 67 V(TypeError, "_TypeError") \
68 V(FallThroughError, "FallThroughError") \ 68 V(FallThroughError, "FallThroughError") \
69 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ 69 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \
70 V(NoSuchMethodError, "NoSuchMethodError") \ 70 V(NoSuchMethodError, "NoSuchMethodError") \
71 V(CyclicInitializationError, "CyclicInitializationError") \ 71 V(CyclicInitializationError, "CyclicInitializationError") \
72 V(ThrowNew, "_throwNew") \ 72 V(ThrowNew, "_throwNew") \
73 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ 73 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \
74 V(HandleCondition, "_handleCondition") \
74 V(Symbol, "Symbol") \ 75 V(Symbol, "Symbol") \
75 V(SymbolCtor, "Symbol.") \ 76 V(SymbolCtor, "Symbol.") \
76 V(List, "List") \ 77 V(List, "List") \
77 V(ListLiteralFactory, "List._fromLiteral") \ 78 V(ListLiteralFactory, "List._fromLiteral") \
78 V(ListFactory, "List.") \ 79 V(ListFactory, "List.") \
79 V(Map, "Map") \ 80 V(Map, "Map") \
80 V(MapLiteralFactory, "Map._fromLiteral") \ 81 V(MapLiteralFactory, "Map._fromLiteral") \
81 V(ImmutableMap, "ImmutableMap") \ 82 V(ImmutableMap, "ImmutableMap") \
82 V(ImmutableMapConstructor, "ImmutableMap._create") \ 83 V(ImmutableMapConstructor, "ImmutableMap._create") \
83 V(StringBase, "_StringBase") \ 84 V(StringBase, "_StringBase") \
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 friend class SnapshotReader; 677 friend class SnapshotReader;
677 friend class SnapshotWriter; 678 friend class SnapshotWriter;
678 friend class ApiMessageReader; 679 friend class ApiMessageReader;
679 680
680 DISALLOW_COPY_AND_ASSIGN(Symbols); 681 DISALLOW_COPY_AND_ASSIGN(Symbols);
681 }; 682 };
682 683
683 } // namespace dart 684 } // namespace dart
684 685
685 #endif // VM_SYMBOLS_H_ 686 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/vm/parser.cc ('K') | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698