| Index: lib/compiler/implementation/universe/universe.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/universe/universe.dart (revision 12903)
|
| +++ lib/compiler/implementation/universe/universe.dart (working copy)
|
| @@ -403,7 +403,7 @@
|
| // Iterate over the optional parameters of the signature, and try to
|
| // find them in [compiledNamedArguments]. If found, we use the
|
| // value in the temporary list, otherwise the default value.
|
| - parameters.forEachOptionalParameter((element) {
|
| + parameters.orderedOptionalParameters.forEach((element) {
|
| int foundIndex = namedArguments.indexOf(element.name);
|
| if (foundIndex != -1) {
|
| list.add(compiledNamedArguments[foundIndex]);
|
|
|