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

Unified Diff: test/codegen/expect/constructors/constructors.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, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/codegen/expect/constructors.js ('k') | test/codegen/expect/convert/convert.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/constructors/constructors.js
diff --git a/test/codegen/expect/constructors/constructors.js b/test/codegen/expect/constructors/constructors.js
deleted file mode 100644
index 01653b26c53cf90912efd0bd61e6b882f810a276..0000000000000000000000000000000000000000
--- a/test/codegen/expect/constructors/constructors.js
+++ /dev/null
@@ -1,120 +0,0 @@
-var constructors;
-(function(exports) {
- 'use strict';
- class A extends dart.Object {
- }
- class B extends dart.Object {
- B() {
- }
- }
- class C extends dart.Object {
- C$named() {
- }
- }
- dart.defineNamedConstructor(C, 'named');
- class C2 extends C {
- C2$named() {
- super.C$named();
- }
- }
- dart.defineNamedConstructor(C2, 'named');
- class D extends dart.Object {
- D() {
- }
- D$named() {
- }
- }
- dart.defineNamedConstructor(D, 'named');
- class E extends dart.Object {
- E(name) {
- this.name = name;
- }
- }
- class F extends E {
- F(name) {
- super.E(name);
- }
- }
- class G extends dart.Object {
- G(p1) {
- if (p1 === void 0)
- p1 = null;
- }
- }
- class H extends dart.Object {
- H(opt$) {
- let p1 = opt$.p1 === void 0 ? null : opt$.p1;
- }
- }
- class I extends dart.Object {
- I() {
- this.name = 'default';
- }
- I$named(name) {
- this.name = name;
- }
- }
- dart.defineNamedConstructor(I, 'named');
- class J extends dart.Object {
- J() {
- this.initialized = true;
- this.nonInitialized = null;
- }
- }
- class K extends dart.Object {
- K() {
- this.s = 'a';
- }
- K$withS(s) {
- this.s = s;
- }
- }
- dart.defineNamedConstructor(K, 'withS');
- class L extends dart.Object {
- L(foo) {
- this.foo = foo;
- }
- }
- class M extends L {
- M$named(x) {
- super.L(x + 42);
- }
- }
- dart.defineNamedConstructor(M, 'named');
- class N extends M {
- N$named(y) {
- super.M$named(y + 100);
- }
- }
- dart.defineNamedConstructor(N, 'named');
- class P extends N {
- P(z) {
- super.N$named(z + 9000);
- }
- P$foo(x) {
- this.P(x + 42);
- }
- P$bar() {
- this.P$foo(1);
- }
- }
- dart.defineNamedConstructor(P, 'foo');
- dart.defineNamedConstructor(P, 'bar');
- // Exports:
- exports.A = A;
- exports.B = B;
- exports.C = C;
- exports.C2 = C2;
- exports.D = D;
- exports.E = E;
- exports.F = F;
- exports.G = G;
- exports.H = H;
- exports.I = I;
- exports.J = J;
- exports.K = K;
- exports.L = L;
- exports.M = M;
- exports.N = N;
- exports.P = P;
-})(constructors || (constructors = {}));
« no previous file with comments | « test/codegen/expect/constructors.js ('k') | test/codegen/expect/convert/convert.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698