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

Side by Side Diff: test/regression/0300/0387.unit

Issue 1475873002: More sophisticated handling of parameter metadata. (Closed) Base URL: https://github.com/dart-lang/dart_style.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 greet(@Rest(valueHelp: 'who', help: 'Name(s) to greet.') List<String> who,
3 {@Group.start(title: 'Output')
4 @Option(help: 'How many !\'s to append.')
5 int enthusiasm: 0,
6 @Flag(abbr: 'l', help: 'Put names on separate lines.') bool lineMode: false,
7 @Option(name: 'greeting', help: 'Alternate word to greet with e.g. "Hi".')
8 String salutation: 'Hello'}) {}
9 <<<
10 greet(
11 @Rest(valueHelp: 'who', help: 'Name(s) to greet.')
12 List<String> who,
13 {@Group.start(title: 'Output')
14 @Option(help: 'How many !\'s to append.')
15 int enthusiasm: 0,
16 @Flag(abbr: 'l', help: 'Put names on separate lines.')
17 bool lineMode: false,
18 @Option(name: 'greeting', help: 'Alternate word to greet with e.g. "Hi".')
19 String salutation: 'Hello'}) {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698