| Index: lib/compiler/implementation/ssa/codegen.dart
|
| diff --git a/lib/compiler/implementation/ssa/codegen.dart b/lib/compiler/implementation/ssa/codegen.dart
|
| index 4ef4e02014b33084545e371663981db6515c2cf1..fee4d926a92dec56d3e21b560bd619fc96bbba42 100644
|
| --- a/lib/compiler/implementation/ssa/codegen.dart
|
| +++ b/lib/compiler/implementation/ssa/codegen.dart
|
| @@ -95,7 +95,7 @@ class SsaCodeGeneratorTask extends CompilerTask {
|
| // The dom/html libraries have inline JS code that reference
|
| // parameter names directly. Long-term such code will be rejected.
|
| // Now, just don't mangle the parameter name.
|
| - function.computeParameters(compiler).forEachParameter((Element element) {
|
| + function.computeSignature(compiler).forEachParameter((Element element) {
|
| parameterNames[element] = function.isNative()
|
| ? element.name.slowToString()
|
| : JsNames.getValid('${element.name.slowToString()}');
|
|
|