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

Side by Side Diff: packages/dart_style/test/regression/0400/0420.unit

Issue 1521693002: Roll Observatory deps (charted -> ^0.3.0) (Closed) Base URL: https://chromium.googlesource.com/external/github.com/dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years 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 >>>
2 createSomeObject(String s, Int64 id,
3 {Map<String, Int64> mapFromStringToInt64}) => null;
4
5 main() {
6 void group() {
7 void initialize() {
8 final SOME_SUPER_LONG_CONST = 'Foo';
9 var objects = [
10 createSomeObject(SOME_SUPER_LONG_CONST, new Int64(1), mapFromStringToInt 64:
11 {'ONE': new Int64(1), 'TWO': new Int64(2), 'THREE': new Int64(3)}),
12 ];
13 }
14 }
15 }
16 <<<
17 createSomeObject(String s, Int64 id,
18 {Map<String, Int64> mapFromStringToInt64}) =>
19 null;
20
21 main() {
22 void group() {
23 void initialize() {
24 final SOME_SUPER_LONG_CONST = 'Foo';
25 var objects = [
26 createSomeObject(SOME_SUPER_LONG_CONST, new Int64(1),
27 mapFromStringToInt64: {
28 'ONE': new Int64(1),
29 'TWO': new Int64(2),
30 'THREE': new Int64(3)
31 }),
32 ];
33 }
34 }
35 }
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0400/0413.unit ('k') | packages/dart_style/test/regression/0400/0421.unit » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698