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

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

Issue 1700153002: Wrapperless dart:html and friends (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: A couple more tweaks Created 4 years, 10 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/_debugger.js ('k') | lib/runtime/dart/_isolate_helper.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.library('dart/_internal', null, /* Imports */[ 1 dart_library.library('dart/_internal', null, /* Imports */[
2 'dart/_runtime', 2 'dart/_runtime',
3 'dart/core', 3 'dart/core',
4 'dart/collection' 4 'dart/collection'
5 ], /* Lazy imports */[ 5 ], /* Lazy imports */[
6 'dart/math', 6 'dart/math',
7 'dart/_interceptors', 7 'dart/_interceptors',
8 'dart/_js_primitives' 8 'dart/_js_primitives'
9 ], function(exports, dart, core, collection, math, _interceptors, _js_primitives ) { 9 ], function(exports, dart, core, collection, math, _interceptors, _js_primitives ) {
10 'use strict'; 10 'use strict';
(...skipping 1811 matching lines...) Expand 10 before | Expand all | Expand 10 after
1822 containsValue: [core.bool, [core.Object]], 1822 containsValue: [core.bool, [core.Object]],
1823 containsKey: [core.bool, [core.Object]], 1823 containsKey: [core.bool, [core.Object]],
1824 forEach: [dart.void, [dart.functionType(dart.void, [core.int, E])]], 1824 forEach: [dart.void, [dart.functionType(dart.void, [core.int, E])]],
1825 set: [dart.void, [core.int, E]], 1825 set: [dart.void, [core.int, E]],
1826 putIfAbsent: [E, [core.int, dart.functionType(E, [])]], 1826 putIfAbsent: [E, [core.int, dart.functionType(E, [])]],
1827 remove: [E, [core.Object]], 1827 remove: [E, [core.Object]],
1828 clear: [dart.void, []], 1828 clear: [dart.void, []],
1829 addAll: [dart.void, [core.Map$(core.int, E)]] 1829 addAll: [dart.void, [core.Map$(core.int, E)]]
1830 }) 1830 })
1831 }); 1831 });
1832 dart.defineExtensionMembers(ListMapView, [
1833 'get',
1834 'containsValue',
1835 'containsKey',
1836 'forEach',
1837 'set',
1838 'putIfAbsent',
1839 'remove',
1840 'clear',
1841 'addAll',
1842 'length',
1843 'values',
1844 'keys',
1845 'isEmpty',
1846 'isNotEmpty'
1847 ]);
1832 return ListMapView; 1848 return ListMapView;
1833 }); 1849 });
1834 let ListMapView = ListMapView$(); 1850 let ListMapView = ListMapView$();
1835 const ReversedListIterable$ = dart.generic(function(E) { 1851 const ReversedListIterable$ = dart.generic(function(E) {
1836 class ReversedListIterable extends ListIterable$(E) { 1852 class ReversedListIterable extends ListIterable$(E) {
1837 ReversedListIterable(source) { 1853 ReversedListIterable(source) {
1838 this[_source] = source; 1854 this[_source] = source;
1839 super.ListIterable(); 1855 super.ListIterable();
1840 } 1856 }
1841 get length() { 1857 get length() {
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
2344 exports.ReversedListIterable = ReversedListIterable; 2360 exports.ReversedListIterable = ReversedListIterable;
2345 exports.UnmodifiableListError = UnmodifiableListError; 2361 exports.UnmodifiableListError = UnmodifiableListError;
2346 exports.NonGrowableListError = NonGrowableListError; 2362 exports.NonGrowableListError = NonGrowableListError;
2347 exports.makeListFixedLength = makeListFixedLength; 2363 exports.makeListFixedLength = makeListFixedLength;
2348 exports.Lists = Lists; 2364 exports.Lists = Lists;
2349 exports.printToConsole = printToConsole; 2365 exports.printToConsole = printToConsole;
2350 exports.Sort = Sort; 2366 exports.Sort = Sort;
2351 exports.Symbol = Symbol; 2367 exports.Symbol = Symbol;
2352 exports.POWERS_OF_TEN = POWERS_OF_TEN; 2368 exports.POWERS_OF_TEN = POWERS_OF_TEN;
2353 }); 2369 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_debugger.js ('k') | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698