| Index: sdk/lib/_internal/compiler/implementation/universe/universe.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/universe/universe.dart (revision 22108)
|
| +++ sdk/lib/_internal/compiler/implementation/universe/universe.dart (working copy)
|
| @@ -175,12 +175,14 @@
|
| selector.argumentCount, selector.namedArguments);
|
|
|
| Selector.callConstructor(SourceString constructorName,
|
| - LibraryElement library)
|
| + LibraryElement library,
|
| + [int arity = 0,
|
| + List<SourceString> named = const []])
|
| : this(SelectorKind.CALL,
|
| constructorName,
|
| library,
|
| - 0,
|
| - const []);
|
| + arity,
|
| + named);
|
|
|
| Selector.callDefaultConstructor(LibraryElement library)
|
| : this(SelectorKind.CALL, const SourceString(""), library, 0, const []);
|
|
|