blob: 424a1fe78286c896b02d9e724c2f4316c5cddd91 [file] [log] [blame]
>>>
pluralThatFailsParsing(noOfThings) => Intl.plural(noOfThings,
one: "1 thing:",
other: "$noOfThings things:",
name: "pluralThatFailsParsing",
args: [noOfThings],
desc: "How many things are there?");
<<<
pluralThatFailsParsing(noOfThings) => Intl.plural(
noOfThings,
one: "1 thing:",
other: "$noOfThings things:",
name: "pluralThatFailsParsing",
args: [noOfThings],
desc: "How many things are there?",
);
>>> (indent 2)
parser.addOption("output-dir", defaultsTo: '.',
callback: (value) => targetDir = value);
<<<
parser.addOption(
"output-dir",
defaultsTo: '.',
callback: (value) => targetDir = value,
);