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

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

Issue 22425006: Fix equality of implicit closures in the Dart VM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: added missing file 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
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 V(Void, "void") \ 70 V(Void, "void") \
71 V(UnresolvedClass, "UnresolvedClass") \ 71 V(UnresolvedClass, "UnresolvedClass") \
72 V(Type, "_Type") \ 72 V(Type, "_Type") \
73 V(TypeParameter, "_TypeParameter") \ 73 V(TypeParameter, "_TypeParameter") \
74 V(BoundedType, "_BoundedType") \ 74 V(BoundedType, "_BoundedType") \
75 V(MixinAppType, "_MixinAppType") \ 75 V(MixinAppType, "_MixinAppType") \
76 V(TypeArguments, "TypeArguments") \ 76 V(TypeArguments, "TypeArguments") \
77 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ 77 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \
78 V(PatchClass, "PatchClass") \ 78 V(PatchClass, "PatchClass") \
79 V(Function, "Function") \ 79 V(Function, "Function") \
80 V(DartFunctionImpl, "_DartFunctionImpl") \
Ivan Posva 2013/08/14 05:27:57 FunctionImpl
Florian Schneider 2013/08/14 09:07:49 Done.
80 V(FunctionResult, "function result") \ 81 V(FunctionResult, "function result") \
81 V(FactoryResult, "factory result") \ 82 V(FactoryResult, "factory result") \
82 V(ClosureData, "ClosureData") \ 83 V(ClosureData, "ClosureData") \
83 V(RedirectionData, "RedirectionData") \ 84 V(RedirectionData, "RedirectionData") \
84 V(Field, "Field") \ 85 V(Field, "Field") \
85 V(LiteralToken, "LiteralToken") \ 86 V(LiteralToken, "LiteralToken") \
86 V(TokenStream, "TokenStream") \ 87 V(TokenStream, "TokenStream") \
87 V(Script, "Script") \ 88 V(Script, "Script") \
88 V(LibraryClass, "Library") \ 89 V(LibraryClass, "Library") \
89 V(LibraryPrefix, "LibraryPrefix") \ 90 V(LibraryPrefix, "LibraryPrefix") \
(...skipping 390 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

Powered by Google App Engine
This is Rietveld 408576698