| Index: pkg/compiler/lib/src/world.dart
|
| diff --git a/pkg/compiler/lib/src/world.dart b/pkg/compiler/lib/src/world.dart
|
| index 46cc830f7dbb8f1504bc4c70b7e130b7d01d8479..c7d8c0799969aab6429ca45c72f829ea65f32c5f 100644
|
| --- a/pkg/compiler/lib/src/world.dart
|
| +++ b/pkg/compiler/lib/src/world.dart
|
| @@ -679,6 +679,11 @@ class World implements ClassWorld {
|
| return elementsThatCannotThrow.contains(element);
|
| }
|
|
|
| + void registerImplicitSuperCall(Registry registry,
|
| + FunctionElement superConstructor) {
|
| + registry.registerDependency(superConstructor);
|
| + }
|
| +
|
| void registerMightBePassedToApply(Element element) {
|
| functionsThatMightBePassedToApply.add(element);
|
| }
|
|
|