| Index: frog/leg/compiler.dart
|
| diff --git a/frog/leg/compiler.dart b/frog/leg/compiler.dart
|
| index 57de705348fe6f582282cab5613c00754562a02b..259b13b0af645cae3773779c160585ceb37cd7dd 100644
|
| --- a/frog/leg/compiler.dart
|
| +++ b/frog/leg/compiler.dart
|
| @@ -265,6 +265,11 @@ class Compiler implements DiagnosticListener {
|
| addToWorklist(element);
|
| }
|
|
|
| + void registerGetOfStaticFunction(FunctionElement element) {
|
| + registerStaticUse(element);
|
| + universe.staticFunctionsNeedingGetter.add(element);
|
| + }
|
| +
|
| void registerDynamicInvocation(SourceString methodName, Selector selector) {
|
| assert(selector !== null);
|
| Set<Invocation> existing = universe.invokedNames[methodName];
|
|
|