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

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

Issue 968273002: Fixing layout in js output (use full paths rather than just the library name) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: address review comments Created 5 years, 9 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/math/math.js ('k') | test/codegen/expect/methods/methods.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 methods; 1 var methods;
2 (function(exports) { 2 (function(exports) {
3 'use strict'; 3 'use strict';
4 class A extends dart.Object { 4 class A extends dart.Object {
5 A() { 5 A() {
6 this._c = 3; 6 this._c = 3;
7 } 7 }
8 x() { 8 x() {
9 return 42; 9 return 42;
10 } 10 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 function test() { 54 function test() {
55 let f = new Foo(); 55 let f = new Foo();
56 dart.dinvoke(f, 'bar', "Bar's call method!"); 56 dart.dinvoke(f, 'bar', "Bar's call method!");
57 } 57 }
58 // Exports: 58 // Exports:
59 exports.A = A; 59 exports.A = A;
60 exports.Bar = Bar; 60 exports.Bar = Bar;
61 exports.Foo = Foo; 61 exports.Foo = Foo;
62 exports.test = test; 62 exports.test = test;
63 })(methods || (methods = {})); 63 })(methods || (methods = {}));
OLDNEW
« no previous file with comments | « test/codegen/expect/math/math.js ('k') | test/codegen/expect/methods/methods.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698