| Index: pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
|
| diff --git a/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart b/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
|
| index da0aff8169af40929bf99e2e313fc78799d66244..eabb905220f9a5613bb0954fa0c02d7d9071a6bc 100644
|
| --- a/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
|
| +++ b/pkg/compiler/lib/src/js_emitter/code_emitter_task.dart
|
| @@ -60,7 +60,7 @@ class CodeEmitterTask extends CompilerTask {
|
| String get patchVersion => emitter.patchVersion;
|
|
|
| /// Returns the closure expression of a static function.
|
| - jsAst.Expression isolateStaticClosureAccess(FunctionElement element) {
|
| + jsAst.Expression isolateStaticClosureAccess(MethodElement element) {
|
| return emitter.isolateStaticClosureAccess(element);
|
| }
|
|
|
| @@ -87,7 +87,7 @@ class CodeEmitterTask extends CompilerTask {
|
| /// Returns the JS function representing the given function.
|
| ///
|
| /// The function must be invoked and can not be used as closure.
|
| - jsAst.Expression staticFunctionAccess(FunctionElement e) {
|
| + jsAst.Expression staticFunctionAccess(MethodElement e) {
|
| return emitter.staticFunctionAccess(e);
|
| }
|
|
|
|
|