blob: dc6eb439d9c3595e04e84c44c98e6998a87002e8 [file] [log] [blame]
>>>
class Foo {
static ExportElementImpl exportFor(LibraryElement exportedLibrary,
[List<NamespaceCombinator> combinators = NamespaceCombinator
.EMPTY_LIST]) {
ExportElementImpl spec = new ExportElementImpl(-1);
spec.exportedLibrary = exportedLibrary;
spec.combinators = combinators;
return spec;
}
}
<<<
class Foo {
static ExportElementImpl exportFor(
LibraryElement exportedLibrary, [
List<NamespaceCombinator> combinators = NamespaceCombinator.EMPTY_LIST,
]) {
ExportElementImpl spec = new ExportElementImpl(-1);
spec.exportedLibrary = exportedLibrary;
spec.combinators = combinators;
return spec;
}
}