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

Side by Side Diff: test/codegen/expect/collection/iterable_zip.js

Issue 1530563003: Generate all runtime files from dart. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merged master Created 4 years, 11 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('collection/iterable_zip', null, /* Imports */[ 1 dart_library.library('collection/iterable_zip', null, /* Imports */[
2 "dart/_runtime", 2 'dart/_runtime',
3 'dart/collection', 3 'dart/collection',
4 'dart/core' 4 'dart/core'
5 ], /* Lazy imports */[ 5 ], /* Lazy imports */[
6 ], function(exports, dart, collection, core) { 6 ], function(exports, dart, collection, core) {
7 'use strict'; 7 'use strict';
8 let dartx = dart.dartx; 8 let dartx = dart.dartx;
9 const _iterables = Symbol('_iterables'); 9 const _iterables = Symbol('_iterables');
10 class IterableZip extends collection.IterableBase$(core.List) { 10 class IterableZip extends collection.IterableBase$(core.List) {
11 IterableZip(iterables) { 11 IterableZip(iterables) {
12 this[_iterables] = iterables; 12 this[_iterables] = iterables;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 47 }
48 } 48 }
49 _IteratorZip[dart.implements] = () => [core.Iterator$(core.List)]; 49 _IteratorZip[dart.implements] = () => [core.Iterator$(core.List)];
50 dart.setSignature(_IteratorZip, { 50 dart.setSignature(_IteratorZip, {
51 constructors: () => ({_IteratorZip: [_IteratorZip, [core.List]]}), 51 constructors: () => ({_IteratorZip: [_IteratorZip, [core.List]]}),
52 methods: () => ({moveNext: [core.bool, []]}) 52 methods: () => ({moveNext: [core.bool, []]})
53 }); 53 });
54 // Exports: 54 // Exports:
55 exports.IterableZip = IterableZip; 55 exports.IterableZip = IterableZip;
56 }); 56 });
OLDNEW
« no previous file with comments | « test/codegen/expect/collection/algorithms.js ('k') | test/codegen/expect/collection/priority_queue.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698