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

Side by Side Diff: test/codegen/expect/fieldtest.js

Issue 1122133003: fixes #157, renaming local library identifiers if needed. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: rebase and format Created 5 years, 7 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/dir/html_input_e.js ('k') | test/codegen/expect/map_keys.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 var fieldtest; 1 var fieldtest = dart.defineLibrary(fieldtest, {});
2 (function(exports) { 2 var core = dart.import(core);
3 (function(exports, core) {
3 'use strict'; 4 'use strict';
4 class A extends core.Object { 5 class A extends core.Object {
5 A() { 6 A() {
6 this.x = 42; 7 this.x = 42;
7 } 8 }
8 } 9 }
9 let B$ = dart.generic(function(T) { 10 let B$ = dart.generic(function(T) {
10 class B extends core.Object { 11 class B extends core.Object {
11 B() { 12 B() {
12 this.x = null; 13 this.x = null;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 exports.A = A; 76 exports.A = A;
76 exports.B$ = B$; 77 exports.B$ = B$;
77 exports.B = B; 78 exports.B = B;
78 exports.foo = foo; 79 exports.foo = foo;
79 exports.bar = bar; 80 exports.bar = bar;
80 exports.baz = baz; 81 exports.baz = baz;
81 exports.compute = compute; 82 exports.compute = compute;
82 exports.BaseWithGetter = BaseWithGetter; 83 exports.BaseWithGetter = BaseWithGetter;
83 exports.Derived = Derived; 84 exports.Derived = Derived;
84 exports.main = main; 85 exports.main = main;
85 })(fieldtest || (fieldtest = {})); 86 })(fieldtest, core);
OLDNEW
« no previous file with comments | « test/codegen/expect/dir/html_input_e.js ('k') | test/codegen/expect/map_keys.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698