blob: 8880048f866678881ebeeb5ec6c7313e7f6b23cf [file] [log] [blame]
>>>
class Selector {
factory Selector.call(String name,
LibraryElement library,
int arity,
[List<String> namedArguments])
=> new Selector(SelectorKind.CALL, name, library, arity, namedArguments);
}
<<<
class Selector {
factory Selector.call(String name, LibraryElement library, int arity,
[List<String> namedArguments]) =>
new Selector(SelectorKind.CALL, name, library, arity, namedArguments);
}
>>> a knock-on issue caused by the initial fix for the above
class Foo {
get getter => "result";
// Comment.
}
<<<
class Foo {
get getter => "result";
// Comment.
}