Index: pkg/compiler/lib/src/kernel/world_builder.dart |
diff --git a/pkg/compiler/lib/src/kernel/world_builder.dart b/pkg/compiler/lib/src/kernel/world_builder.dart |
index c137eb289483143630f99135879c26d72cfcef17..80a67d597da80091303069cc782b9a58e8574de3 100644 |
--- a/pkg/compiler/lib/src/kernel/world_builder.dart |
+++ b/pkg/compiler/lib/src/kernel/world_builder.dart |
@@ -2,6 +2,8 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
+library dart2js.kernel.world_builder; |
+ |
import 'package:kernel/ast.dart' as ir; |
import '../common.dart'; |
@@ -19,10 +21,13 @@ import '../elements/entities.dart'; |
import '../elements/types.dart'; |
import '../js_backend/backend_helpers.dart'; |
import '../js_backend/constant_system_javascript.dart'; |
+import '../js_backend/no_such_method_registry.dart'; |
import '../native/native.dart' as native; |
import 'element_adapter.dart'; |
import 'elements.dart'; |
+part 'no_such_method_resolver.dart'; |
+ |
/// World builder used for creating elements and types corresponding to Kernel |
/// IR nodes. |
// TODO(johnniwinther): Implement [ResolutionWorldBuilder]. |