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

Side by Side Diff: lib/runtime/dart/_interceptors.js

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Address comments 2 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 unified diff | Download patch
« no previous file with comments | « lib/runtime/dart/_foreign_helper.js ('k') | lib/runtime/dart/_internal.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 dart.library('dart/_interceptors', null, /* Imports */[ 1 dart_library.library('dart/_interceptors', null, /* Imports */[
2 "dart_runtime/dart",
2 'dart/core', 3 'dart/core',
3 'dart/_internal', 4 'dart/_internal',
4 'dart/collection', 5 'dart/collection',
5 'dart/math' 6 'dart/math'
6 ], /* Lazy imports */[ 7 ], /* Lazy imports */[
7 'dart/_js_helper' 8 'dart/_js_helper'
8 ], function(exports, core, _internal, collection, math, _js_helper) { 9 ], function(exports, dart, core, _internal, collection, math, _js_helper) {
9 'use strict'; 10 'use strict';
11 let dartx = dart.dartx;
10 let JSArray$ = dart.generic(function(E) { 12 let JSArray$ = dart.generic(function(E) {
11 dart.defineExtensionNames([ 13 dart.defineExtensionNames([
12 'checkGrowable', 14 'checkGrowable',
13 'add', 15 'add',
14 'removeAt', 16 'removeAt',
15 'insert', 17 'insert',
16 'insertAll', 18 'insertAll',
17 'setAll', 19 'setAll',
18 'removeLast', 20 'removeLast',
19 'remove', 21 'remove',
(...skipping 1569 matching lines...) Expand 10 before | Expand all | Expand 10 after
1589 exports.JSString = JSString; 1591 exports.JSString = JSString;
1590 exports.getInterceptor = getInterceptor; 1592 exports.getInterceptor = getInterceptor;
1591 exports.JSBool = JSBool; 1593 exports.JSBool = JSBool;
1592 exports.JSIndexable = JSIndexable; 1594 exports.JSIndexable = JSIndexable;
1593 exports.JSMutableIndexable = JSMutableIndexable; 1595 exports.JSMutableIndexable = JSMutableIndexable;
1594 exports.JSObject = JSObject; 1596 exports.JSObject = JSObject;
1595 exports.JavaScriptObject = JavaScriptObject; 1597 exports.JavaScriptObject = JavaScriptObject;
1596 exports.PlainJavaScriptObject = PlainJavaScriptObject; 1598 exports.PlainJavaScriptObject = PlainJavaScriptObject;
1597 exports.UnknownJavaScriptObject = UnknownJavaScriptObject; 1599 exports.UnknownJavaScriptObject = UnknownJavaScriptObject;
1598 }); 1600 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_foreign_helper.js ('k') | lib/runtime/dart/_internal.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698