OLD | NEW |
(Empty) | |
| 1 >>> |
| 2 pluralThatFailsParsing(noOfThings) => Intl.plural(noOfThings, |
| 3 one: "1 thing:", |
| 4 other: "$noOfThings things:", |
| 5 name: "pluralThatFailsParsing", |
| 6 args: [noOfThings], |
| 7 desc: "How many things are there?"); |
| 8 <<< |
| 9 pluralThatFailsParsing(noOfThings) => Intl.plural(noOfThings, |
| 10 one: "1 thing:", |
| 11 other: "$noOfThings things:", |
| 12 name: "pluralThatFailsParsing", |
| 13 args: [noOfThings], |
| 14 desc: "How many things are there?"); |
| 15 >>> (indent 2) |
| 16 parser.addOption("output-dir", defaultsTo: '.', |
| 17 callback: (value) => targetDir = value); |
| 18 <<< |
| 19 parser.addOption("output-dir", |
| 20 defaultsTo: '.', callback: (value) => targetDir = value); |
OLD | NEW |