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

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

Issue 2005723004: Fraction class prototype and test (not to be committed). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: work in progress Created 4 years, 5 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/ast.h ('k') | runtime/vm/clustered_snapshot.cc » ('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 VM_BOOTSTRAP_NATIVES_H_ 5 #ifndef VM_BOOTSTRAP_NATIVES_H_
6 #define VM_BOOTSTRAP_NATIVES_H_ 6 #define VM_BOOTSTRAP_NATIVES_H_
7 7
8 #include "vm/native_entry.h" 8 #include "vm/native_entry.h"
9 9
10 // bootstrap dart natives used in the core dart library. 10 // bootstrap dart natives used in the core dart library.
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 V(Double_mul, 2) \ 82 V(Double_mul, 2) \
83 V(Double_div, 2) \ 83 V(Double_div, 2) \
84 V(Double_trunc_div, 2) \ 84 V(Double_trunc_div, 2) \
85 V(Double_remainder, 2) \ 85 V(Double_remainder, 2) \
86 V(Double_modulo, 2) \ 86 V(Double_modulo, 2) \
87 V(Double_greaterThanFromInteger, 2) \ 87 V(Double_greaterThanFromInteger, 2) \
88 V(Double_equalToInteger, 2) \ 88 V(Double_equalToInteger, 2) \
89 V(Double_greaterThan, 2) \ 89 V(Double_greaterThan, 2) \
90 V(Double_equal, 2) \ 90 V(Double_equal, 2) \
91 V(Double_doubleFromInteger, 2) \ 91 V(Double_doubleFromInteger, 2) \
92 V(Double_doubleFromFraction, 2) \
92 V(Double_round, 1) \ 93 V(Double_round, 1) \
93 V(Double_floor, 1) \ 94 V(Double_floor, 1) \
94 V(Double_ceil, 1) \ 95 V(Double_ceil, 1) \
95 V(Double_truncate, 1) \ 96 V(Double_truncate, 1) \
96 V(Double_toInt, 1) \ 97 V(Double_toInt, 1) \
98 V(Double_toFraction, 2) \
97 V(Double_parse, 3) \ 99 V(Double_parse, 3) \
98 V(Double_toString, 1) \ 100 V(Double_toString, 1) \
99 V(Double_toStringAsFixed, 2) \ 101 V(Double_toStringAsFixed, 2) \
100 V(Double_toStringAsExponential, 2) \ 102 V(Double_toStringAsExponential, 2) \
101 V(Double_toStringAsPrecision, 2) \ 103 V(Double_toStringAsPrecision, 2) \
102 V(Double_flipSignBit, 1) \ 104 V(Double_flipSignBit, 1) \
103 V(RegExp_factory, 4) \ 105 V(RegExp_factory, 4) \
104 V(RegExp_getPattern, 1) \ 106 V(RegExp_getPattern, 1) \
105 V(RegExp_getIsMultiLine, 1) \ 107 V(RegExp_getIsMultiLine, 1) \
106 V(RegExp_getIsCaseSensitive, 1) \ 108 V(RegExp_getIsCaseSensitive, 1) \
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 #ifndef PRODUCT 436 #ifndef PRODUCT
435 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 437 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
436 #endif 438 #endif
437 439
438 #undef DECLARE_BOOTSTRAP_NATIVE 440 #undef DECLARE_BOOTSTRAP_NATIVE
439 }; 441 };
440 442
441 } // namespace dart 443 } // namespace dart
442 444
443 #endif // VM_BOOTSTRAP_NATIVES_H_ 445 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/vm/ast.h ('k') | runtime/vm/clustered_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698