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

Side by Side Diff: test/codegen/expect/covariance.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
« no previous file with comments | « test/codegen/expect/constructors.js ('k') | test/codegen/expect/dir/html_input_a.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('covariance', null, /* Imports */[ 1 dart_library.library('covariance', null, /* Imports */[
2 "dart/_runtime", 2 'dart/_runtime',
3 'dart/core' 3 'dart/core'
4 ], /* Lazy imports */[ 4 ], /* Lazy imports */[
5 ], function(exports, dart, core) { 5 ], function(exports, dart, core) {
6 'use strict'; 6 'use strict';
7 let dartx = dart.dartx; 7 let dartx = dart.dartx;
8 const _t = Symbol('_t'); 8 const _t = Symbol('_t');
9 const Foo$ = dart.generic(function(T) { 9 const Foo$ = dart.generic(function(T) {
10 class Foo extends core.Object { 10 class Foo extends core.Object {
11 Foo() { 11 Foo() {
12 this[_t] = null; 12 this[_t] = null;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 let foo = new Bar(); 45 let foo = new Bar();
46 foo.add('hi'); 46 foo.add('hi');
47 } 47 }
48 dart.fn(main); 48 dart.fn(main);
49 // Exports: 49 // Exports:
50 exports.Foo$ = Foo$; 50 exports.Foo$ = Foo$;
51 exports.Foo = Foo; 51 exports.Foo = Foo;
52 exports.Bar = Bar; 52 exports.Bar = Bar;
53 exports.main = main; 53 exports.main = main;
54 }); 54 });
OLDNEW
« no previous file with comments | « test/codegen/expect/constructors.js ('k') | test/codegen/expect/dir/html_input_a.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698