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

Unified 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, 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 | « lib/src/js/template.dart ('k') | test/codegen/expect/BenchmarkBase/BenchmarkBase.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/constructors.dart
diff --git a/test/codegen/constructors.dart b/test/codegen/constructors.dart
index ef468e8be8f6e62000063a1e5e7d6fc4f4182cfe..092e219921b040a688599849856dda592b121f2d 100644
--- a/test/codegen/constructors.dart
+++ b/test/codegen/constructors.dart
@@ -80,4 +80,6 @@ class N extends M {
class P extends N {
P(int z) : super.named(z + 9000);
+ P.foo(int x) : this(x + 42);
+ P.bar() : this.foo(1);
}
« 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