| Index: frog/leg/compiler.dart
|
| diff --git a/frog/leg/compiler.dart b/frog/leg/compiler.dart
|
| index 0b44f59a083507603ab983dcd6bdd7fccde2972f..57de705348fe6f582282cab5613c00754562a02b 100644
|
| --- a/frog/leg/compiler.dart
|
| +++ b/frog/leg/compiler.dart
|
| @@ -266,6 +266,7 @@ class Compiler implements DiagnosticListener {
|
| }
|
|
|
| void registerDynamicInvocation(SourceString methodName, Selector selector) {
|
| + assert(selector !== null);
|
| Set<Invocation> existing = universe.invokedNames[methodName];
|
| if (existing == null) {
|
| universe.invokedNames[methodName] = new Set.from(<Selector>[selector]);
|
|
|