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

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

Issue 1211273011: Added full deferred loading semantic to precompiled/--noopt/eager-loading code (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: c Created 5 years, 5 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') | runtime/vm/weak_code.cc » ('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
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 V(PhaseParameter, ":phase") \ 59 V(PhaseParameter, ":phase") \
60 V(TypeArgumentsParameter, ":type_arguments") \ 60 V(TypeArgumentsParameter, ":type_arguments") \
61 V(AssertionError, "_AssertionError") \ 61 V(AssertionError, "_AssertionError") \
62 V(CastError, "_CastError") \ 62 V(CastError, "_CastError") \
63 V(TypeError, "_TypeError") \ 63 V(TypeError, "_TypeError") \
64 V(FallThroughError, "FallThroughError") \ 64 V(FallThroughError, "FallThroughError") \
65 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ 65 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \
66 V(NoSuchMethodError, "NoSuchMethodError") \ 66 V(NoSuchMethodError, "NoSuchMethodError") \
67 V(CyclicInitializationError, "CyclicInitializationError") \ 67 V(CyclicInitializationError, "CyclicInitializationError") \
68 V(ThrowNew, "_throwNew") \ 68 V(ThrowNew, "_throwNew") \
69 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \
69 V(Symbol, "Symbol") \ 70 V(Symbol, "Symbol") \
70 V(SymbolCtor, "Symbol.") \ 71 V(SymbolCtor, "Symbol.") \
71 V(List, "List") \ 72 V(List, "List") \
72 V(ListLiteralFactory, "List._fromLiteral") \ 73 V(ListLiteralFactory, "List._fromLiteral") \
73 V(ListFactory, "List.") \ 74 V(ListFactory, "List.") \
74 V(Map, "Map") \ 75 V(Map, "Map") \
75 V(MapLiteralFactory, "Map._fromLiteral") \ 76 V(MapLiteralFactory, "Map._fromLiteral") \
76 V(ImmutableMap, "ImmutableMap") \ 77 V(ImmutableMap, "ImmutableMap") \
77 V(ImmutableMapConstructor, "ImmutableMap._create") \ 78 V(ImmutableMapConstructor, "ImmutableMap._create") \
78 V(StringBase, "_StringBase") \ 79 V(StringBase, "_StringBase") \
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 friend class SnapshotReader; 627 friend class SnapshotReader;
627 friend class SnapshotWriter; 628 friend class SnapshotWriter;
628 friend class ApiMessageReader; 629 friend class ApiMessageReader;
629 630
630 DISALLOW_COPY_AND_ASSIGN(Symbols); 631 DISALLOW_COPY_AND_ASSIGN(Symbols);
631 }; 632 };
632 633
633 } // namespace dart 634 } // namespace dart
634 635
635 #endif // VM_SYMBOLS_H_ 636 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | runtime/vm/weak_code.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698