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

Side by Side Diff: test/codegen/expect/cascade.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/DeltaBlue.js ('k') | test/codegen/expect/constructors.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 cascade; 1 var cascade = dart.defineLibrary(cascade, {});
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 = null; 7 this.x = null;
7 } 8 }
8 } 9 }
9 // Function test_closure_with_mutate: () → void 10 // Function test_closure_with_mutate: () → void
10 function test_closure_with_mutate() { 11 function test_closure_with_mutate() {
11 let a = new A(); 12 let a = new A();
12 a.x = () => { 13 a.x = () => {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 exports.test_closure_without_mutate = test_closure_without_mutate; 109 exports.test_closure_without_mutate = test_closure_without_mutate;
109 exports.test_mutate_inside_cascade = test_mutate_inside_cascade; 110 exports.test_mutate_inside_cascade = test_mutate_inside_cascade;
110 exports.test_mutate_outside_cascade = test_mutate_outside_cascade; 111 exports.test_mutate_outside_cascade = test_mutate_outside_cascade;
111 exports.test_VariableDeclaration_single = test_VariableDeclaration_single; 112 exports.test_VariableDeclaration_single = test_VariableDeclaration_single;
112 exports.test_VariableDeclaration_last = test_VariableDeclaration_last; 113 exports.test_VariableDeclaration_last = test_VariableDeclaration_last;
113 exports.test_VariableDeclaration_first = test_VariableDeclaration_first; 114 exports.test_VariableDeclaration_first = test_VariableDeclaration_first;
114 exports.test_increment = test_increment; 115 exports.test_increment = test_increment;
115 exports.Base$ = Base$; 116 exports.Base$ = Base$;
116 exports.Base = Base; 117 exports.Base = Base;
117 exports.Foo = Foo; 118 exports.Foo = Foo;
118 })(cascade || (cascade = {})); 119 })(cascade, core);
OLDNEW
« no previous file with comments | « test/codegen/expect/DeltaBlue.js ('k') | test/codegen/expect/constructors.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698