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

Unified Diff: lib/runtime/dart/_interceptors.js

Issue 1133593004: fixes #131, use before define from variables to classes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 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 | lib/runtime/dart/_internal.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_interceptors.js
diff --git a/lib/runtime/dart/_interceptors.js b/lib/runtime/dart/_interceptors.js
index 9ad20c6c70db310f4e6d45cd15d4f1c6efb39088..b84f2db51873df77894eaf53a358fad780b3f067 100644
--- a/lib/runtime/dart/_interceptors.js
+++ b/lib/runtime/dart/_interceptors.js
@@ -27,13 +27,6 @@ var _js_embedded_names = dart.import(_js_embedded_names);
return JSExtendableArray;
});
let JSExtendableArray = JSExtendableArray$();
- let _isInt32 = Symbol('_isInt32');
- let _tdivFast = Symbol('_tdivFast');
- let _tdivSlow = Symbol('_tdivSlow');
- let _shlPositive = Symbol('_shlPositive');
- let _shrReceiverPositive = Symbol('_shrReceiverPositive');
- let _shrOtherPositive = Symbol('_shrOtherPositive');
- let _shrBothPositive = Symbol('_shrBothPositive');
class Interceptor extends core.Object {
Interceptor() {
}
@@ -53,6 +46,13 @@ var _js_embedded_names = dart.import(_js_embedded_names);
return _js_helper.getRuntimeType(this);
}
}
+ let _isInt32 = Symbol('_isInt32');
+ let _tdivFast = Symbol('_tdivFast');
+ let _tdivSlow = Symbol('_tdivSlow');
+ let _shlPositive = Symbol('_shlPositive');
+ let _shrReceiverPositive = Symbol('_shrReceiverPositive');
+ let _shrOtherPositive = Symbol('_shrOtherPositive');
+ let _shrBothPositive = Symbol('_shrBothPositive');
class JSNumber extends Interceptor {
JSNumber() {
super.Interceptor();
@@ -1062,8 +1062,8 @@ var _js_embedded_names = dart.import(_js_embedded_names);
exports.JSFixedArray = JSFixedArray;
exports.JSExtendableArray$ = JSExtendableArray$;
exports.JSExtendableArray = JSExtendableArray;
- exports.JSNumber = JSNumber;
exports.Interceptor = Interceptor;
+ exports.JSNumber = JSNumber;
exports.JSInt = JSInt;
exports.JSDouble = JSDouble;
exports.JSPositiveInt = JSPositiveInt;
« no previous file with comments | « no previous file | lib/runtime/dart/_internal.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698