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

Unified Diff: runtime/vm/intrinsifier.h

Issue 11000021: Intrinsify named constructors on private classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/intrinsifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier.h
diff --git a/runtime/vm/intrinsifier.h b/runtime/vm/intrinsifier.h
index e4567a3e1eb779c16feb3fd7897fbcc501170dbc..1768e6f20c29f08fd57393377a059d06a7efdb49 100644
--- a/runtime/vm/intrinsifier.h
+++ b/runtime/vm/intrinsifier.h
@@ -48,16 +48,16 @@ namespace dart {
V(_Double, /, Double_div) \
V(_Double, toDouble, Double_toDouble) \
V(_Double, mulFromInteger, Double_mulFromInteger) \
- V(_Double, _Double.fromInteger, Double_fromInteger) \
+ V(_Double, .fromInteger, Double_fromInteger) \
V(_Double, isNaN, Double_isNaN) \
V(_Double, isNegative, Double_isNegative) \
V(_Double, toInt, Double_toInt) \
- V(_ObjectArray, _ObjectArray., ObjectArray_Allocate) \
+ V(_ObjectArray, ., ObjectArray_Allocate) \
V(_ObjectArray, get:length, Array_getLength) \
V(_ObjectArray, [], Array_getIndexed) \
V(_ObjectArray, []=, Array_setIndexed) \
V(_GrowableObjectArray, \
- _GrowableObjectArray.fromObjectArray, \
+ .fromObjectArray, \
GArray_Allocate) \
V(_GrowableObjectArray, get:length, GrowableArray_getLength) \
V(_GrowableObjectArray, get:capacity, GrowableArray_getCapacity) \
« no previous file with comments | « no previous file | runtime/vm/intrinsifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698