Chromium Code Reviews| Index: lib/compiler/implementation/enqueue.dart |
| =================================================================== |
| --- lib/compiler/implementation/enqueue.dart (revision 12117) |
| +++ lib/compiler/implementation/enqueue.dart (working copy) |
| @@ -101,6 +101,9 @@ |
| if (elements === null) { |
| elements = getCachedElements(element); |
| } |
| + if (isResolutionQueue && element.isMember() && element.isGetter()) { |
| + compiler.world.getters.add(element); |
|
kasperl
2012/09/11 07:39:11
I think this deserves its own method in world -- t
ngeoffray
2012/09/11 08:51:08
Done.
|
| + } |
| queue.add(new WorkItem(element, elements, itemCompilationContextCreator())); |