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

Side by Side Diff: test/codegen/constructors.dart

Issue 949383003: use js_ast instead of strings to generate JS (Closed) Base URL: git@github.com:dart-lang/dart-dev-compiler.git@master
Patch Set: add redirecting ctor test 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 | « lib/src/js/template.dart ('k') | test/codegen/expect/BenchmarkBase/BenchmarkBase.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 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 class A {} 5 class A {}
6 6
7 class B { 7 class B {
8 B(); 8 B();
9 } 9 }
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 class M extends L { 73 class M extends L {
74 M.named(int x) : super(x + 42); 74 M.named(int x) : super(x + 42);
75 } 75 }
76 76
77 class N extends M { 77 class N extends M {
78 N.named(int y) : super.named(y + 100); 78 N.named(int y) : super.named(y + 100);
79 } 79 }
80 80
81 class P extends N { 81 class P extends N {
82 P(int z) : super.named(z + 9000); 82 P(int z) : super.named(z + 9000);
83 P.foo(int x) : this(x + 42);
84 P.bar() : this.foo(1);
83 } 85 }
OLDNEW
« no previous file with comments | « lib/src/js/template.dart ('k') | test/codegen/expect/BenchmarkBase/BenchmarkBase.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698