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

Unified Diff: runtime/vm/method_recognizer.h

Issue 2529393002: Make core libraries use generic method syntax. (Closed)
Patch Set: Change chunked conversion back. Created 4 years 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/method_recognizer.h
diff --git a/runtime/vm/method_recognizer.h b/runtime/vm/method_recognizer.h
index 5ab5eaccbf4d9a49e46554988ed6437a38421841..862602eaa85134579df75bb99d3e14e4c2d82103 100644
--- a/runtime/vm/method_recognizer.h
+++ b/runtime/vm/method_recognizer.h
@@ -47,8 +47,8 @@ namespace dart {
V(_Double, _sub, DoubleSub, Double, 0x419b3c66) \
V(_Double, _mul, DoubleMul, Double, 0x1a08cbe1) \
V(_Double, _div, DoubleDiv, Double, 0x38d2770f) \
- V(::, min, MathMin, Dynamic, 0x4276561c) \
- V(::, max, MathMax, Dynamic, 0x54121d6a) \
+ V(::, min, MathMin, Dynamic, 0x0bee5d52) \
+ V(::, max, MathMax, Dynamic, 0x4f51acb6) \
V(::, _doublePow, MathDoublePow, Double, 0x698eb78d) \
V(Float32x4, Float32x4., Float32x4Constructor, Float32x4, 0x05968999) \
V(Float32x4, Float32x4.zero, Float32x4Zero, Float32x4, 0x472a4c46) \
@@ -407,8 +407,8 @@ namespace dart {
V(_ByteDataView, getFloat64, ByteDataViewGetFloat64, 0x5396432d) \
V(::, exp, MathExp, 0x5b894d7b) \
V(::, log, MathLog, 0x2e25132c) \
- V(::, max, MathMax, 0x54121d6a) \
- V(::, min, MathMin, 0x4276561c) \
+ V(::, max, MathMax, 0x4f51acb6) \
+ V(::, min, MathMin, 0x0bee5d52) \
V(::, pow, MathPow, 0x438e3089) \
V(::, _classRangeCheck, ClassRangeCheck, 0x6279a7b3) \
V(::, _classRangeCheckNegative, ClassRangeCheckNegated, 0x4799dac1) \

Powered by Google App Engine
This is Rietveld 408576698