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

Unified Diff: runtime/vm/bootstrap_natives.h

Issue 11227042: isEven, isOdd, isNegative, isMaxValue, isMinValue, isInfinite, isPositive, isSingleValue. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/bootstrap_natives.h
diff --git a/runtime/vm/bootstrap_natives.h b/runtime/vm/bootstrap_natives.h
index 426bb8bcd4e20edffd52134866cb7884f5055ac7..7b424b0dc92ae29c9fe23ca3bbf66596c1982ce5 100644
--- a/runtime/vm/bootstrap_natives.h
+++ b/runtime/vm/bootstrap_natives.h
@@ -35,6 +35,9 @@ namespace dart {
V(Smi_bitNegate, 1) \
V(Mint_bitNegate, 1) \
V(Bigint_bitNegate, 1) \
+ V(Double_getIsNegative, 1) \
+ V(Double_getIsInfinite, 1) \
+ V(Double_getIsNaN, 1) \
V(Double_add, 2) \
V(Double_sub, 2) \
V(Double_mul, 2) \
@@ -46,9 +49,6 @@ namespace dart {
V(Double_equalToInteger, 2) \
V(Double_greaterThan, 2) \
V(Double_equal, 2) \
- V(Double_isNegative, 1) \
- V(Double_isInfinite, 1) \
- V(Double_isNaN, 1) \
V(Double_doubleFromInteger, 2) \
V(Double_round, 1) \
V(Double_floor, 1) \

Powered by Google App Engine
This is Rietveld 408576698