| Index: third_party/pkg/js/lib/js.dart
|
| ===================================================================
|
| --- third_party/pkg/js/lib/js.dart (revision 33054)
|
| +++ third_party/pkg/js/lib/js.dart (working copy)
|
| @@ -70,6 +70,7 @@
|
| library js;
|
|
|
| import 'dart:js' as js;
|
| +@MirrorsUsed(symbols: '*')
|
| import 'dart:mirrors';
|
|
|
| /**
|
| @@ -258,8 +259,8 @@
|
| final _thisArg;
|
|
|
| FunctionProxy._(js.JsFunction jsFunction, {thisArg}) :
|
| - _jsFunction = jsFunction,
|
| - _thisArg = thisArg,
|
| + this._jsFunction = jsFunction,
|
| + this._thisArg = thisArg,
|
| super._(jsFunction);
|
|
|
| factory FunctionProxy(Function f) => new FunctionProxy._(
|
|
|