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

Side by Side Diff: pkg/kernel/testcases/spec-mode/arithmetic.baseline.txt

Issue 2825063002: Move kernel baseline tests to front_end. (Closed)
Patch Set: Created 3 years, 8 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 library;
2 import self as self;
3 import "dart:core" as core;
4
5 static method foo(core::int x, core::int y) → core::int {
6 dynamic z = x.+(y);
7 return z.<<(4);
8 }
9 static method loop(core::List<dynamic> xs) → void {
10 core::int _ = xs.length;
11 for (core::int i = 0; i.<(xs.length); i = i.+(1)) {
12 }
13 }
14 static method main() → dynamic {
15 self::foo(4, 5);
16 self::foo(6, 7);
17 self::loop(<dynamic>["dfg"]);
18 }
OLDNEW
« no previous file with comments | « pkg/kernel/testcases/spec-mode/argument.baseline.txt ('k') | pkg/kernel/testcases/spec-mode/async_function.baseline.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698