Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/enqueue.dart |
| =================================================================== |
| --- sdk/lib/_internal/compiler/implementation/enqueue.dart (revision 14840) |
| +++ sdk/lib/_internal/compiler/implementation/enqueue.dart (working copy) |
| @@ -139,6 +139,10 @@ |
| } |
| universe.instantiatedClasses.add(cls); |
| onRegisterInstantiatedClass(cls); |
| + if (cls.isAbstract(compiler)) { |
|
ahe
2012/11/13 12:42:41
How about turning all this into a method call on t
ngeoffray
2012/11/13 12:51:50
Done.
|
| + ClassElement element = compiler.backend.getBackendImplementation(cls); |
| + if (element != null) registerInstantiatedClass(element); |
| + } |
| } |
| bool checkNoEnqueuedInvokedInstanceMethods() { |