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

Unified Diff: tool/input_sdk/private/ddc_runtime/runtime.dart

Issue 1879373004: Implement modular compilation (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 8 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 | « tool/input_sdk/private/ddc_runtime/rtti.dart ('k') | tool/input_sdk/private/ddc_runtime/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/private/ddc_runtime/runtime.dart
diff --git a/tool/input_sdk/private/ddc_runtime/runtime.dart b/tool/input_sdk/private/ddc_runtime/runtime.dart
index 061218b484e25c91429969d1305656ae41b87019..b846b4a9bbaf50971f53e1dcaa95a7c75cbf4998 100644
--- a/tool/input_sdk/private/ddc_runtime/runtime.dart
+++ b/tool/input_sdk/private/ddc_runtime/runtime.dart
@@ -19,18 +19,6 @@ part 'rtti.dart';
part 'types.dart';
part 'utils.dart';
-// From dart_utils
-final defineLazyClass = JS('', '$defineLazy');
-final defineLazyProperties = JS('', '$defineLazy');
-final defineLazyClassGeneric = JS('', '$defineLazyProperty');
-
-// Renames
-@JSExportName('as')
-final as_ = JS('', '$cast');
-
-@JSExportName('is')
-final is_ = JS('', '$instanceOf');
-
@JSExportName('global')
final global_ = JS('', 'typeof window == "undefined" ? global : window');
final JsSymbol = JS('', 'Symbol');
« no previous file with comments | « tool/input_sdk/private/ddc_runtime/rtti.dart ('k') | tool/input_sdk/private/ddc_runtime/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698