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

Side by Side Diff: tests/kernel/unsorted/global_function_test.dart

Issue 2434123003: Merge more Kernel infrastructure from kernel_sdk SDK fork. (Closed)
Patch Set: Created 4 years, 2 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 main() {
Kevin Millikin (Google) 2016/10/21 09:10:57 Copyright header.
Vyacheslav Egorov (Google) 2016/10/21 13:39:43 Done.
2 foo(1, 2);
3 print('---');
4 foo(1, 2, d: 12);
5 print('---');
6 foo(1, 2, c: 11, e: 13);
7
8 print('=====');
9
10 bar(1, 2);
11 print('---');
12 bar(1, 2, 3);
13 print('---');
14 bar(1, 2, 3, 4);
15 }
16
17 foo(a, b, {c, d, e}) {
18 print(a);
19 print(b);
20 print(c);
21 print(d);
22 print(e);
23 }
24
25 bar(a, b, [c, d]) {
26 print(a);
27 print(b);
28 print(c);
29 print(d);
30 }
31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698