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

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: 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
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 1828 matching lines...) Expand 10 before | Expand all | Expand 10 after
1839 containsValue: [core.bool, [core.Object]], 1839 containsValue: [core.bool, [core.Object]],
1840 containsKey: [core.bool, [core.Object]], 1840 containsKey: [core.bool, [core.Object]],
1841 forEach: [dart.void, [dart.functionType(dart.void, [core.int, E])]], 1841 forEach: [dart.void, [dart.functionType(dart.void, [core.int, E])]],
1842 set: [dart.void, [core.int, E]], 1842 set: [dart.void, [core.int, E]],
1843 putIfAbsent: [E, [core.int, dart.functionType(E, [])]], 1843 putIfAbsent: [E, [core.int, dart.functionType(E, [])]],
1844 remove: [E, [core.Object]], 1844 remove: [E, [core.Object]],
1845 clear: [dart.void, []], 1845 clear: [dart.void, []],
1846 addAll: [dart.void, [core.Map$(core.int, E)]] 1846 addAll: [dart.void, [core.Map$(core.int, E)]]
1847 }) 1847 })
1848 }); 1848 });
1849 dart.defineExtensionMembers(ListMapView, [
1850 'get',
1851 'containsValue',
1852 'containsKey',
1853 'forEach',
1854 'set',
1855 'putIfAbsent',
1856 'remove',
1857 'clear',
1858 'addAll',
1859 'length',
1860 'values',
1861 'keys',
1862 'isEmpty',
1863 'isNotEmpty'
1864 ]);
1849 return ListMapView; 1865 return ListMapView;
1850 }); 1866 });
1851 let ListMapView = ListMapView$(); 1867 let ListMapView = ListMapView$();
1852 const ReversedListIterable$ = dart.generic(function(E) { 1868 const ReversedListIterable$ = dart.generic(function(E) {
1853 class ReversedListIterable extends ListIterable$(E) { 1869 class ReversedListIterable extends ListIterable$(E) {
1854 ReversedListIterable(source) { 1870 ReversedListIterable(source) {
1855 this[_source] = source; 1871 this[_source] = source;
1856 super.ListIterable(); 1872 super.ListIterable();
1857 } 1873 }
1858 get length() { 1874 get length() {
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
2361 exports.ReversedListIterable = ReversedListIterable; 2377 exports.ReversedListIterable = ReversedListIterable;
2362 exports.UnmodifiableListError = UnmodifiableListError; 2378 exports.UnmodifiableListError = UnmodifiableListError;
2363 exports.NonGrowableListError = NonGrowableListError; 2379 exports.NonGrowableListError = NonGrowableListError;
2364 exports.makeListFixedLength = makeListFixedLength; 2380 exports.makeListFixedLength = makeListFixedLength;
2365 exports.Lists = Lists; 2381 exports.Lists = Lists;
2366 exports.printToConsole = printToConsole; 2382 exports.printToConsole = printToConsole;
2367 exports.Sort = Sort; 2383 exports.Sort = Sort;
2368 exports.Symbol = Symbol; 2384 exports.Symbol = Symbol;
2369 exports.POWERS_OF_TEN = POWERS_OF_TEN; 2385 exports.POWERS_OF_TEN = POWERS_OF_TEN;
2370 }); 2386 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698