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

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

Issue 63983005: Simplify the desugaring of catch clauses. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Incorporated final review comments. Created 7 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
« no previous file with comments | « runtime/vm/scopes.cc ('k') | tests/language/try_catch_test.dart » ('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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 V(ImmutableMap, "ImmutableMap") \ 53 V(ImmutableMap, "ImmutableMap") \
54 V(ImmutableMapConstructor, "ImmutableMap._create") \ 54 V(ImmutableMapConstructor, "ImmutableMap._create") \
55 V(StringBase, "_StringBase") \ 55 V(StringBase, "_StringBase") \
56 V(Interpolate, "_interpolate") \ 56 V(Interpolate, "_interpolate") \
57 V(GetIterator, "iterator") \ 57 V(GetIterator, "iterator") \
58 V(NoSuchMethod, "noSuchMethod") \ 58 V(NoSuchMethod, "noSuchMethod") \
59 V(SavedCurrentContextVar, ":saved_current_context_var") \ 59 V(SavedCurrentContextVar, ":saved_current_context_var") \
60 V(SavedEntryContextVar, ":saved_entry_context_var") \ 60 V(SavedEntryContextVar, ":saved_entry_context_var") \
61 V(SavedTryContextVar, ":saved_try_context_var") \ 61 V(SavedTryContextVar, ":saved_try_context_var") \
62 V(ExceptionVar, ":exception_var") \ 62 V(ExceptionVar, ":exception_var") \
63 V(StacktraceVar, ":stacktrace_var") \ 63 V(StackTraceVar, ":stack_trace_var") \
64 V(ListLiteralElement, "list literal element") \ 64 V(ListLiteralElement, "list literal element") \
65 V(ForInIter, ":for-in-iter") \ 65 V(ForInIter, ":for-in-iter") \
66 V(ClosureFunctionField, ":function") \ 66 V(ClosureFunctionField, ":function") \
67 V(ClosureContextField, ":context") \ 67 V(ClosureContextField, ":context") \
68 V(Library, "library") \ 68 V(Library, "library") \
69 V(Native, "native") \ 69 V(Native, "native") \
70 V(Import, "import") \ 70 V(Import, "import") \
71 V(Source, "source") \ 71 V(Source, "source") \
72 V(Class, "Class") \ 72 V(Class, "Class") \
73 V(Null, "Null") \ 73 V(Null, "Null") \
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 friend class SnapshotReader; 498 friend class SnapshotReader;
499 friend class SnapshotWriter; 499 friend class SnapshotWriter;
500 friend class ApiMessageReader; 500 friend class ApiMessageReader;
501 501
502 DISALLOW_COPY_AND_ASSIGN(Symbols); 502 DISALLOW_COPY_AND_ASSIGN(Symbols);
503 }; 503 };
504 504
505 } // namespace dart 505 } // namespace dart
506 506
507 #endif // VM_SYMBOLS_H_ 507 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/scopes.cc ('k') | tests/language/try_catch_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698