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

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

Issue 22916006: Move the begin token of explicit functions to the start of the function declaration. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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
« 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/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 V(SavedCurrentContextVar, ":saved_current_context_var") \ 55 V(SavedCurrentContextVar, ":saved_current_context_var") \
56 V(SavedEntryContextVar, ":saved_entry_context_var") \ 56 V(SavedEntryContextVar, ":saved_entry_context_var") \
57 V(SavedTryContextVar, ":saved_try_context_var") \ 57 V(SavedTryContextVar, ":saved_try_context_var") \
58 V(ExceptionVar, ":exception_var") \ 58 V(ExceptionVar, ":exception_var") \
59 V(StacktraceVar, ":stacktrace_var") \ 59 V(StacktraceVar, ":stacktrace_var") \
60 V(ListLiteralElement, "list literal element") \ 60 V(ListLiteralElement, "list literal element") \
61 V(ForInIter, ":for-in-iter") \ 61 V(ForInIter, ":for-in-iter") \
62 V(ClosureFunctionField, ":function") \ 62 V(ClosureFunctionField, ":function") \
63 V(ClosureContextField, ":context") \ 63 V(ClosureContextField, ":context") \
64 V(Library, "library") \ 64 V(Library, "library") \
65 V(Native, "native") \
65 V(Import, "import") \ 66 V(Import, "import") \
66 V(Source, "source") \ 67 V(Source, "source") \
67 V(Class, "Class") \ 68 V(Class, "Class") \
68 V(Null, "Null") \ 69 V(Null, "Null") \
69 V(Dynamic, "dynamic") \ 70 V(Dynamic, "dynamic") \
70 V(Void, "void") \ 71 V(Void, "void") \
71 V(UnresolvedClass, "UnresolvedClass") \ 72 V(UnresolvedClass, "UnresolvedClass") \
72 V(Type, "_Type") \ 73 V(Type, "_Type") \
73 V(TypeParameter, "_TypeParameter") \ 74 V(TypeParameter, "_TypeParameter") \
74 V(BoundedType, "_BoundedType") \ 75 V(BoundedType, "_BoundedType") \
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 friend class SnapshotReader; 481 friend class SnapshotReader;
481 friend class SnapshotWriter; 482 friend class SnapshotWriter;
482 friend class ApiMessageReader; 483 friend class ApiMessageReader;
483 484
484 DISALLOW_COPY_AND_ASSIGN(Symbols); 485 DISALLOW_COPY_AND_ASSIGN(Symbols);
485 }; 486 };
486 487
487 } // namespace dart 488 } // namespace dart
488 489
489 #endif // VM_SYMBOLS_H_ 490 #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