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

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

Issue 2207883004: From Regis: Remove regexp pattern from function name to avoid crash in debug mode. Fix service obj… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « runtime/vm/regexp.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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 V(DotValue, ".value") \ 291 V(DotValue, ".value") \
292 V(FormatException, "FormatException") \ 292 V(FormatException, "FormatException") \
293 V(UnsupportedError, "UnsupportedError") \ 293 V(UnsupportedError, "UnsupportedError") \
294 V(StackOverflowError, "StackOverflowError") \ 294 V(StackOverflowError, "StackOverflowError") \
295 V(OutOfMemoryError, "OutOfMemoryError") \ 295 V(OutOfMemoryError, "OutOfMemoryError") \
296 V(NullThrownError, "NullThrownError") \ 296 V(NullThrownError, "NullThrownError") \
297 V(IsolateSpawnException, "IsolateSpawnException") \ 297 V(IsolateSpawnException, "IsolateSpawnException") \
298 V(BooleanExpression, "boolean expression") \ 298 V(BooleanExpression, "boolean expression") \
299 V(MegamorphicMiss, "megamorphic_miss") \ 299 V(MegamorphicMiss, "megamorphic_miss") \
300 V(CommaSpace, ", ") \ 300 V(CommaSpace, ", ") \
301 V(ColonSpace, ": ") \
302 V(RParenArrow, ") => ") \ 301 V(RParenArrow, ") => ") \
303 V(SpaceExtendsSpace, " extends ") \ 302 V(SpaceExtendsSpace, " extends ") \
304 V(SpaceWhereNewLine, " where\n") \ 303 V(SpaceWhereNewLine, " where\n") \
305 V(SpaceIsFromSpace, " is from ") \ 304 V(SpaceIsFromSpace, " is from ") \
306 V(InTypeCast, " in type cast") \ 305 V(InTypeCast, " in type cast") \
307 V(TypeQuote, "type '") \ 306 V(TypeQuote, "type '") \
308 V(QuoteIsNotASubtypeOf, "' is not a subtype of ") \ 307 V(QuoteIsNotASubtypeOf, "' is not a subtype of ") \
309 V(SpaceOfSpace, " of ") \ 308 V(SpaceOfSpace, " of ") \
310 V(SwitchExpr, ":switch_expr") \ 309 V(SwitchExpr, ":switch_expr") \
311 V(TwoNewlines, "\n\n") \ 310 V(TwoNewlines, "\n\n") \
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 friend class Serializer; 682 friend class Serializer;
684 friend class Deserializer; 683 friend class Deserializer;
685 friend class ApiMessageReader; 684 friend class ApiMessageReader;
686 685
687 DISALLOW_COPY_AND_ASSIGN(Symbols); 686 DISALLOW_COPY_AND_ASSIGN(Symbols);
688 }; 687 };
689 688
690 } // namespace dart 689 } // namespace dart
691 690
692 #endif // VM_SYMBOLS_H_ 691 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/regexp.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698