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

Side by Side Diff: test/regression/0000/0057.stmt

Issue 1252323003: Allow arguments before and after block-formatted functions. (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Update pubspec and changelog. Created 5 years, 4 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
« no previous file with comments | « test/regression/0000/0050.stmt ('k') | test/regression/0300/0369.stmt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 >>> 1 >>>
2 embeddedPlural2(n) => Intl.message( 2 embeddedPlural2(n) => Intl.message(
3 "${Intl.plural(n, 3 "${Intl.plural(n,
4 zero: 'none', one: 'one', other: 'some')} plus some text.", 4 zero: 'none', one: 'one', other: 'some')} plus some text.",
5 name: 'embeddedPlural2', desc: 'An embedded plural', args: [n]); 5 name: 'embeddedPlural2', desc: 'An embedded plural', args: [n]);
6 <<< 6 <<<
7 embeddedPlural2(n) => Intl.message("${Intl.plural(n, 7 embeddedPlural2(n) => Intl.message(
8 "${Intl.plural(n,
8 zero: 'none', one: 'one', other: 'some')} plus some text.", 9 zero: 'none', one: 'one', other: 'some')} plus some text.",
9 name: 'embeddedPlural2', desc: 'An embedded plural', args: [n]); 10 name: 'embeddedPlural2',
11 desc: 'An embedded plural',
12 args: [n]);
OLDNEW
« no previous file with comments | « test/regression/0000/0050.stmt ('k') | test/regression/0300/0369.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698