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

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

Issue 12179020: Fix for issues 6080 - pass in the Isolate's top context into the stub for invoking dart code from n… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/stub_code_x64.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/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 V(ListFixedLengthFactory, "List.fixedLength") \ 47 V(ListFixedLengthFactory, "List.fixedLength") \
48 V(Map, "Map") \ 48 V(Map, "Map") \
49 V(MapLiteralFactory, "Map._fromLiteral") \ 49 V(MapLiteralFactory, "Map._fromLiteral") \
50 V(ImmutableMap, "ImmutableMap") \ 50 V(ImmutableMap, "ImmutableMap") \
51 V(ImmutableMapConstructor, "ImmutableMap._create") \ 51 V(ImmutableMapConstructor, "ImmutableMap._create") \
52 V(StringBase, "_StringBase") \ 52 V(StringBase, "_StringBase") \
53 V(Interpolate, "_interpolate") \ 53 V(Interpolate, "_interpolate") \
54 V(GetIterator, "iterator") \ 54 V(GetIterator, "iterator") \
55 V(NoSuchMethod, "noSuchMethod") \ 55 V(NoSuchMethod, "noSuchMethod") \
56 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ 56 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \
57 V(SavedCurrentContextVar, ":saved_current_context_var") \
57 V(SavedEntryContextVar, ":saved_entry_context_var") \ 58 V(SavedEntryContextVar, ":saved_entry_context_var") \
58 V(SavedContextVar, ":saved_context_var") \ 59 V(SavedTryContextVar, ":saved_try_context_var") \
59 V(ExceptionVar, ":exception_var") \ 60 V(ExceptionVar, ":exception_var") \
60 V(StacktraceVar, ":stacktrace_var") \ 61 V(StacktraceVar, ":stacktrace_var") \
61 V(ListLiteralElement, "list literal element") \ 62 V(ListLiteralElement, "list literal element") \
62 V(ForInIter, ":for-in-iter") \ 63 V(ForInIter, ":for-in-iter") \
63 V(Library, "library") \ 64 V(Library, "library") \
64 V(Import, "import") \ 65 V(Import, "import") \
65 V(Source, "source") \ 66 V(Source, "source") \
66 V(Class, "Class") \ 67 V(Class, "Class") \
67 V(Null, "Null") \ 68 V(Null, "Null") \
68 V(Dynamic, "dynamic") \ 69 V(Dynamic, "dynamic") \
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 friend class SnapshotReader; 389 friend class SnapshotReader;
389 friend class SnapshotWriter; 390 friend class SnapshotWriter;
390 friend class ApiMessageReader; 391 friend class ApiMessageReader;
391 392
392 DISALLOW_COPY_AND_ASSIGN(Symbols); 393 DISALLOW_COPY_AND_ASSIGN(Symbols);
393 }; 394 };
394 395
395 } // namespace dart 396 } // namespace dart
396 397
397 #endif // VM_SYMBOLS_H_ 398 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/stub_code_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698