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

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

Issue 509153003: New bigint implementation in the vm. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 3 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 V(Error, "Error") \ 128 V(Error, "Error") \
129 V(ApiError, "ApiError") \ 129 V(ApiError, "ApiError") \
130 V(LanguageError, "LanguageError") \ 130 V(LanguageError, "LanguageError") \
131 V(UnhandledException, "UnhandledException") \ 131 V(UnhandledException, "UnhandledException") \
132 V(UnwindError, "UnwindError") \ 132 V(UnwindError, "UnwindError") \
133 V(IntegerImplementation, "_IntegerImplementation") \ 133 V(IntegerImplementation, "_IntegerImplementation") \
134 V(Number, "num") \ 134 V(Number, "num") \
135 V(_Smi, "_Smi") \ 135 V(_Smi, "_Smi") \
136 V(_Mint, "_Mint") \ 136 V(_Mint, "_Mint") \
137 V(_Bigint, "_Bigint") \ 137 V(_Bigint, "_Bigint") \
138 V(_BigintFromDoubleFactory, "_Bigint._fromDouble") \
138 V(_Double, "_Double") \ 139 V(_Double, "_Double") \
139 V(Bool, "bool") \ 140 V(Bool, "bool") \
140 V(True, "true") \ 141 V(True, "true") \
141 V(False, "false") \ 142 V(False, "false") \
142 V(_List, "_List") \ 143 V(_List, "_List") \
143 V(_ListFactory, "_List.") \ 144 V(_ListFactory, "_List.") \
144 V(_GrowableList, "_GrowableList") \ 145 V(_GrowableList, "_GrowableList") \
145 V(_GrowableListFactory, "_GrowableList.") \ 146 V(_GrowableListFactory, "_GrowableList.") \
146 V(_GrowableListWithData, "_GrowableList.withData") \ 147 V(_GrowableListWithData, "_GrowableList.withData") \
147 V(_ImmutableList, "_ImmutableList") \ 148 V(_ImmutableList, "_ImmutableList") \
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 friend class SnapshotReader; 513 friend class SnapshotReader;
513 friend class SnapshotWriter; 514 friend class SnapshotWriter;
514 friend class ApiMessageReader; 515 friend class ApiMessageReader;
515 516
516 DISALLOW_COPY_AND_ASSIGN(Symbols); 517 DISALLOW_COPY_AND_ASSIGN(Symbols);
517 }; 518 };
518 519
519 } // namespace dart 520 } // namespace dart
520 521
521 #endif // VM_SYMBOLS_H_ 522 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/vm/object.cc ('K') | « runtime/vm/snapshot_test.cc ('k') | runtime/vm/unit_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698