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

Side by Side Diff: test/codegen/expect/fieldtest.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 | « test/codegen/expect/domtest.js ('k') | test/codegen/expect/functions.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('fieldtest', null, /* Imports */[ 1 dart_library.library('fieldtest', null, /* Imports */[
2 "dart_runtime/dart",
2 'dart/core' 3 'dart/core'
3 ], /* Lazy imports */[ 4 ], /* Lazy imports */[
4 ], function(exports, core) { 5 ], function(exports, dart, core) {
5 'use strict'; 6 'use strict';
7 let dartx = dart.dartx;
6 class A extends core.Object { 8 class A extends core.Object {
7 A() { 9 A() {
8 this.x = 42; 10 this.x = 42;
9 } 11 }
10 } 12 }
11 let B$ = dart.generic(function(T) { 13 let B$ = dart.generic(function(T) {
12 class B extends core.Object { 14 class B extends core.Object {
13 B() { 15 B() {
14 this.x = null; 16 this.x = null;
15 this.y = null; 17 this.y = null;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 exports.baz = baz; 109 exports.baz = baz;
108 exports.compute = compute; 110 exports.compute = compute;
109 exports.BaseWithGetter = BaseWithGetter; 111 exports.BaseWithGetter = BaseWithGetter;
110 exports.Derived = Derived; 112 exports.Derived = Derived;
111 exports.Generic$ = Generic$; 113 exports.Generic$ = Generic$;
112 exports.Generic = Generic; 114 exports.Generic = Generic;
113 exports.StaticFieldOrder1 = StaticFieldOrder1; 115 exports.StaticFieldOrder1 = StaticFieldOrder1;
114 exports.StaticFieldOrder2 = StaticFieldOrder2; 116 exports.StaticFieldOrder2 = StaticFieldOrder2;
115 exports.main = main; 117 exports.main = main;
116 }); 118 });
OLDNEW
« no previous file with comments | « test/codegen/expect/domtest.js ('k') | test/codegen/expect/functions.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698