| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 class EnqueueTask extends CompilerTask { | 5 class EnqueueTask extends CompilerTask { |
| 6 final Enqueuer codegen; | 6 final Enqueuer codegen; |
| 7 final Enqueuer resolution; | 7 final Enqueuer resolution; |
| 8 | 8 |
| 9 String get name() => 'Enqueue'; | 9 String get name() => 'Enqueue'; |
| 10 | 10 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 void addToWorkList(Element element, [TreeElements elements]) { | 74 void addToWorkList(Element element, [TreeElements elements]) { |
| 75 if (element.isForeign()) return; | 75 if (element.isForeign()) return; |
| 76 if (compiler.phase == Compiler.PHASE_RECOMPILING) return; | 76 if (compiler.phase == Compiler.PHASE_RECOMPILING) return; |
| 77 if (queueIsClosed) { | 77 if (queueIsClosed) { |
| 78 if (isResolutionQueue && getCachedElements(element) !== null) return; | 78 if (isResolutionQueue && getCachedElements(element) !== null) return; |
| 79 compiler.internalErrorOnElement(element, "Work list is closed."); | 79 compiler.internalErrorOnElement(element, "Work list is closed."); |
| 80 } | 80 } |
| 81 if (!isResolutionQueue && | 81 if (!isResolutionQueue && |
| 82 element.kind === ElementKind.GENERATIVE_CONSTRUCTOR) { | 82 element.kind === ElementKind.GENERATIVE_CONSTRUCTOR) { |
| 83 registerInstantiatedClass(element.enclosingElement); | 83 registerInstantiatedClass(element.getEnclosingClass()); |
| 84 } | 84 } |
| 85 if (elements === null) { | 85 if (elements === null) { |
| 86 elements = getCachedElements(element); | 86 elements = getCachedElements(element); |
| 87 } | 87 } |
| 88 queue.add(new WorkItem(element, elements)); | 88 queue.add(new WorkItem(element, elements)); |
| 89 } | 89 } |
| 90 | 90 |
| 91 bool canBeRecompiled(Element element) { | 91 bool canBeRecompiled(Element element) { |
| 92 // Only member functions can be recompiled. An exception to this is members | 92 // Only member functions can be recompiled. An exception to this is members |
| 93 // of closures. They are processed as part of the enclosing function and not | 93 // of closures. They are processed as part of the enclosing function and not |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 void registerIsCheck(Element element) { | 314 void registerIsCheck(Element element) { |
| 315 universe.isChecks.add(element); | 315 universe.isChecks.add(element); |
| 316 } | 316 } |
| 317 | 317 |
| 318 void forEach(f(WorkItem work)) { | 318 void forEach(f(WorkItem work)) { |
| 319 while (!queue.isEmpty()) { | 319 while (!queue.isEmpty()) { |
| 320 f(queue.removeLast()); | 320 f(queue.removeLast()); |
| 321 } | 321 } |
| 322 } | 322 } |
| 323 } | 323 } |
| OLD | NEW |