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

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

Issue 2643523002: Implement generic function type syntax in the VM (fixes #27966). (Closed)
Patch Set: refactor parsing of formal parameter per review request Created 3 years, 11 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
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/language/language.status » ('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 RUNTIME_VM_SYMBOLS_H_ 5 #ifndef RUNTIME_VM_SYMBOLS_H_
6 #define RUNTIME_VM_SYMBOLS_H_ 6 #define RUNTIME_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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 V(_LocalVariableMirror, "_LocalVariableMirror") \ 379 V(_LocalVariableMirror, "_LocalVariableMirror") \
380 V(_LocalParameterMirror, "_LocalParameterMirror") \ 380 V(_LocalParameterMirror, "_LocalParameterMirror") \
381 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ 381 V(_LocalIsolateMirror, "_LocalIsolateMirror") \
382 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ 382 V(_LocalMirrorSystem, "_LocalMirrorSystem") \
383 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ 383 V(_LocalTypedefMirror, "_LocalTypedefMirror") \
384 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ 384 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \
385 V(_SourceLocation, "_SourceLocation") \ 385 V(_SourceLocation, "_SourceLocation") \
386 V(hashCode, "get:hashCode") \ 386 V(hashCode, "get:hashCode") \
387 V(OptimizedOut, "<optimized out>") \ 387 V(OptimizedOut, "<optimized out>") \
388 V(NotInitialized, "<not initialized>") \ 388 V(NotInitialized, "<not initialized>") \
389 V(NotNamed, "<not named>") \
389 V(TempParam, ":temp_param") \ 390 V(TempParam, ":temp_param") \
390 V(_UserTag, "_UserTag") \ 391 V(_UserTag, "_UserTag") \
391 V(Default, "Default") \ 392 V(Default, "Default") \
392 V(ClassID, "ClassID") \ 393 V(ClassID, "ClassID") \
393 V(DartIsVM, "dart.isVM") \ 394 V(DartIsVM, "dart.isVM") \
394 V(stack, ":stack") \ 395 V(stack, ":stack") \
395 V(stack_pointer, ":stack_pointer") \ 396 V(stack_pointer, ":stack_pointer") \
396 V(current_character, ":current_character") \ 397 V(current_character, ":current_character") \
397 V(current_position, ":current_position") \ 398 V(current_position, ":current_position") \
398 V(string_param_length, ":string_param_length") \ 399 V(string_param_length, ":string_param_length") \
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 friend class Serializer; 683 friend class Serializer;
683 friend class Deserializer; 684 friend class Deserializer;
684 friend class ApiMessageReader; 685 friend class ApiMessageReader;
685 686
686 DISALLOW_COPY_AND_ASSIGN(Symbols); 687 DISALLOW_COPY_AND_ASSIGN(Symbols);
687 }; 688 };
688 689
689 } // namespace dart 690 } // namespace dart
690 691
691 #endif // RUNTIME_VM_SYMBOLS_H_ 692 #endif // RUNTIME_VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698