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

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: 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
OLDNEW
1 var methods; 1 var methods;
2 (function(methods) { 2 (function(methods) {
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 methods.A = A; 59 methods.A = A;
60 methods.Bar = Bar; 60 methods.Bar = Bar;
61 methods.Foo = Foo; 61 methods.Foo = Foo;
62 methods.test = test; 62 methods.test = test;
63 })(methods || (methods = {})); 63 })(methods || (methods = {}));
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698