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

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

Issue 1682173008: ‘Yield* e' should not access e.current eagerly (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« runtime/lib/core_patch.dart ('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/growable_array.h" 8 #include "vm/growable_array.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 #include "vm/snapshot_ids.h" 10 #include "vm/snapshot_ids.h"
(...skipping 16 matching lines...) Expand all
27 V(Identical, "identical") \ 27 V(Identical, "identical") \
28 V(Length, "length") \ 28 V(Length, "length") \
29 V(_setLength, "_setLength") \ 29 V(_setLength, "_setLength") \
30 V(IndexToken, "[]") \ 30 V(IndexToken, "[]") \
31 V(AssignIndexToken, "[]=") \ 31 V(AssignIndexToken, "[]=") \
32 V(TopLevel, "::") \ 32 V(TopLevel, "::") \
33 V(DefaultLabel, ":L") \ 33 V(DefaultLabel, ":L") \
34 V(Other, "other") \ 34 V(Other, "other") \
35 V(Call, "call") \ 35 V(Call, "call") \
36 V(Current, "current") \ 36 V(Current, "current") \
37 V(_current, "_current") \
37 V(MoveNext, "moveNext") \ 38 V(MoveNext, "moveNext") \
38 V(IsYieldEach, "isYieldEach") \ 39 V(IsYieldEach, "isYieldEach") \
39 V(Value, "value") \ 40 V(Value, "value") \
40 V(_EnumHelper, "_EnumHelper") \ 41 V(_EnumHelper, "_EnumHelper") \
41 V(_SyncIterable, "_SyncIterable") \ 42 V(_SyncIterable, "_SyncIterable") \
42 V(_SyncIterableConstructor, "_SyncIterable.") \ 43 V(_SyncIterableConstructor, "_SyncIterable.") \
43 V(_SyncIterator, "_SyncIterator") \ 44 V(_SyncIterator, "_SyncIterator") \
44 V(IteratorParameter, ":iterator") \ 45 V(IteratorParameter, ":iterator") \
45 V(_AsyncStarStreamController, "_AsyncStarStreamController") \ 46 V(_AsyncStarStreamController, "_AsyncStarStreamController") \
46 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \ 47 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 friend class SnapshotReader; 661 friend class SnapshotReader;
661 friend class SnapshotWriter; 662 friend class SnapshotWriter;
662 friend class ApiMessageReader; 663 friend class ApiMessageReader;
663 664
664 DISALLOW_COPY_AND_ASSIGN(Symbols); 665 DISALLOW_COPY_AND_ASSIGN(Symbols);
665 }; 666 };
666 667
667 } // namespace dart 668 } // namespace dart
668 669
669 #endif // VM_SYMBOLS_H_ 670 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/lib/core_patch.dart ('K') | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698