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

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

Issue 11360116: Pass closure object as first implicit argument to closure functions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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/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 14 matching lines...) Expand all
25 V(TopLevel, "::") \ 25 V(TopLevel, "::") \
26 V(DefaultLabel, ":L") \ 26 V(DefaultLabel, ":L") \
27 V(This, "this") \ 27 V(This, "this") \
28 V(Super, "super") \ 28 V(Super, "super") \
29 V(Call, "call") \ 29 V(Call, "call") \
30 V(HasNext, "hasNext") \ 30 V(HasNext, "hasNext") \
31 V(Next, "next") \ 31 V(Next, "next") \
32 V(Value, "value") \ 32 V(Value, "value") \
33 V(ExprTemp, ":expr_temp") \ 33 V(ExprTemp, ":expr_temp") \
34 V(AnonymousClosure, "<anonymous closure>") \ 34 V(AnonymousClosure, "<anonymous closure>") \
35 V(ClosureParameter, ":closure") \
35 V(PhaseParameter, ":phase") \ 36 V(PhaseParameter, ":phase") \
36 V(TypeArgumentsParameter, ":type_arguments") \ 37 V(TypeArgumentsParameter, ":type_arguments") \
37 V(AssertionError, "AssertionErrorImplementation") \ 38 V(AssertionError, "AssertionErrorImplementation") \
38 V(TypeError, "TypeErrorImplementation") \ 39 V(TypeError, "TypeErrorImplementation") \
39 V(FallThroughError, "FallThroughErrorImplementation") \ 40 V(FallThroughError, "FallThroughErrorImplementation") \
40 V(AbstractClassInstantiationError, \ 41 V(AbstractClassInstantiationError, \
41 "AbstractClassInstantiationErrorImplementation") \ 42 "AbstractClassInstantiationErrorImplementation") \
42 V(NoSuchMethodError, "NoSuchMethodErrorImplementation") \ 43 V(NoSuchMethodError, "NoSuchMethodErrorImplementation") \
43 V(ThrowNew, "_throwNew") \ 44 V(ThrowNew, "_throwNew") \
44 V(ListLiteralFactoryClass, "_ListLiteralFactory") \ 45 V(ListLiteralFactoryClass, "_ListLiteralFactory") \
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 friend class SnapshotReader; 226 friend class SnapshotReader;
226 friend class SnapshotWriter; 227 friend class SnapshotWriter;
227 friend class ApiMessageReader; 228 friend class ApiMessageReader;
228 229
229 DISALLOW_COPY_AND_ASSIGN(Symbols); 230 DISALLOW_COPY_AND_ASSIGN(Symbols);
230 }; 231 };
231 232
232 } // namespace dart 233 } // namespace dart
233 234
234 #endif // VM_SYMBOLS_H_ 235 #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