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

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

Issue 2818933003: Fix #28740 demangle constructors in stack traces (A.A becomes new A). (Closed)
Patch Set: Fix ctor demangle test comments, kind() == ctor, and test status updates Created 3 years, 8 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/object.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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 V(position_registers, ":position_registers") \ 415 V(position_registers, ":position_registers") \
416 V(string_param, ":string_param") \ 416 V(string_param, ":string_param") \
417 V(start_index_param, ":start_index_param") \ 417 V(start_index_param, ":start_index_param") \
418 V(clear, "clear") \ 418 V(clear, "clear") \
419 V(_wordCharacterMap, "_wordCharacterMap") \ 419 V(_wordCharacterMap, "_wordCharacterMap") \
420 V(print, "print") \ 420 V(print, "print") \
421 V(last, "last") \ 421 V(last, "last") \
422 V(removeLast, "removeLast") \ 422 V(removeLast, "removeLast") \
423 V(add, "add") \ 423 V(add, "add") \
424 V(ConstructorClosurePrefix, "new#") \ 424 V(ConstructorClosurePrefix, "new#") \
425 V(ConstructorStacktracePrefix, "new ") \
425 V(_runExtension, "_runExtension") \ 426 V(_runExtension, "_runExtension") \
426 V(_runPendingImmediateCallback, "_runPendingImmediateCallback") \ 427 V(_runPendingImmediateCallback, "_runPendingImmediateCallback") \
427 V(DartLibrary, "dart.library.") \ 428 V(DartLibrary, "dart.library.") \
428 V(DartLibraryMirrors, "dart.library.mirrors") \ 429 V(DartLibraryMirrors, "dart.library.mirrors") \
429 V(_name, "_name") \ 430 V(_name, "_name") \
430 V(_classRangeCheck, "_classRangeCheck") \ 431 V(_classRangeCheck, "_classRangeCheck") \
431 V(_classRangeCheckNegative, "_classRangeCheckNegative") \ 432 V(_classRangeCheckNegative, "_classRangeCheckNegative") \
432 V(_classRangeAssert, "_classRangeAssert") \ 433 V(_classRangeAssert, "_classRangeAssert") \
433 V(_classIdEqualsAssert, "_classIdEqualsAssert") \ 434 V(_classIdEqualsAssert, "_classIdEqualsAssert") \
434 V(GetRuntimeType, "get:runtimeType") \ 435 V(GetRuntimeType, "get:runtimeType") \
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 friend class Serializer; 694 friend class Serializer;
694 friend class Deserializer; 695 friend class Deserializer;
695 friend class ApiMessageReader; 696 friend class ApiMessageReader;
696 697
697 DISALLOW_COPY_AND_ASSIGN(Symbols); 698 DISALLOW_COPY_AND_ASSIGN(Symbols);
698 }; 699 };
699 700
700 } // namespace dart 701 } // namespace dart
701 702
702 #endif // RUNTIME_VM_SYMBOLS_H_ 703 #endif // RUNTIME_VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698