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

Side by Side Diff: tests/compiler/dart2js/cps_ir/expected/constructor_5.js

Issue 1576093003: cpsir unittests: move all unittests into individual files and test runners. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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
(Empty)
1 // Expectation for test:
2 // foo(x) {
3 // print(x);
4 // }
5 // class Base {
6 // var x1 = foo('x1');
7 // var x2;
8 // var x3 = foo('x3');
9 // Base() : x2 = foo('x2');
10 // }
11 // class Sub extends Base {
12 // var y1 = foo('y1');
13 // var y2;
14 // var y3;
15 // Sub() : y2 = foo('y2'), super(), y3 = foo('y3');
16 // }
17 // main() {
18 // new Sub();
19 // }
20
21 function() {
22 V.foo("y1");
23 V.foo("y2");
24 V.foo("x1");
25 V.foo("x3");
26 V.foo("x2");
27 V.foo("y3");
28 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/cps_ir/expected/constructor_4.js ('k') | tests/compiler/dart2js/cps_ir/expected/constructor_6.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698