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

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

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Eliminate top level libraries from loader Created 5 years, 6 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: lib/runtime/dart/math.js
diff --git a/lib/runtime/dart/math.js b/lib/runtime/dart/math.js
index bd26b58054e2983e9d7b4ee6c282bb5887dee4a9..af9cf59eb3721deda246f406b20d3f5a70e16059 100644
--- a/lib/runtime/dart/math.js
+++ b/lib/runtime/dart/math.js
@@ -1,8 +1,10 @@
-dart.library('dart/math', null, /* Imports */[
+loader.library('dart/math', null, /* Imports */[
+ "dart/dart_runtime",
+ "dart/dartx",
'dart/core'
], /* Lazy imports */[
'dart/_js_helper'
-], function(exports, core, _js_helper) {
+], function(exports, dart, dartx, core, _js_helper) {
'use strict';
class _JenkinsSmiHash extends core.Object {
static combine(hash, value) {

Powered by Google App Engine
This is Rietveld 408576698