| Index: sdk/lib/_internal/compiler/js_lib/js_mirrors.dart
|
| diff --git a/sdk/lib/_internal/compiler/js_lib/js_mirrors.dart b/sdk/lib/_internal/compiler/js_lib/js_mirrors.dart
|
| index 1ab1cfcbd9a5850e31412e74420c4bef0a326e8d..cb70f011ec8bd1feaaf00fdede501e7020d2858d 100644
|
| --- a/sdk/lib/_internal/compiler/js_lib/js_mirrors.dart
|
| +++ b/sdk/lib/_internal/compiler/js_lib/js_mirrors.dart
|
| @@ -2170,7 +2170,7 @@ class JsVariableMirror extends JsDeclarationMirror implements VariableMirror {
|
| }
|
| }
|
| }
|
| - int type = int.parse(fieldInformation[1]);
|
| + int type = int.parse(fieldInformation[1], onError: (_) => null);
|
| return new JsVariableMirror(s(unmangledName),
|
| jsName,
|
| type,
|
|
|