| Index: pkg/compiler/lib/src/js_backend/backend_impact.dart
|
| diff --git a/pkg/compiler/lib/src/js_backend/backend_impact.dart b/pkg/compiler/lib/src/js_backend/backend_impact.dart
|
| index 7ced4461dd3cfbb70d7a5a0d6e25f46836aad62b..659c4e621190b5000a36e941e5bf9c15f4db4a26 100644
|
| --- a/pkg/compiler/lib/src/js_backend/backend_impact.dart
|
| +++ b/pkg/compiler/lib/src/js_backend/backend_impact.dart
|
| @@ -139,7 +139,7 @@ class BackendImpacts {
|
| BackendImpact get constantMapLiteral {
|
|
|
| ClassElement find(String name) {
|
| - return helpers.find(backend.jsHelperLibrary, name);
|
| + return helpers.find(helpers.jsHelperLibrary, name);
|
| }
|
|
|
| return new BackendImpact(
|
| @@ -206,8 +206,8 @@ class BackendImpacts {
|
| staticUses: [
|
| helpers.exceptionUnwrapper],
|
| instantiatedClasses: [
|
| - backend.jsPlainJavaScriptObjectClass,
|
| - backend.jsUnknownJavaScriptObjectClass]);
|
| + helpers.jsPlainJavaScriptObjectClass,
|
| + helpers.jsUnknownJavaScriptObjectClass]);
|
|
|
| BackendImpact get throwExpression => new BackendImpact(
|
| // We don't know ahead of time whether we will need the throw in a
|
|
|