| 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 library dart2js.enqueue; | 5 library dart2js.enqueue; |
| 6 | 6 |
| 7 import 'dart:collection' show Queue; | 7 import 'dart:collection' show Queue; |
| 8 | 8 |
| 9 import 'common/codegen.dart' show CodegenWorkItem; | 9 import 'common/codegen.dart' show CodegenWorkItem; |
| 10 import 'common/names.dart' show Identifiers; | 10 import 'common/names.dart' show Identifiers; |
| (...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1017 } | 1017 } |
| 1018 | 1018 |
| 1019 typedef void _DeferredActionFunction(); | 1019 typedef void _DeferredActionFunction(); |
| 1020 | 1020 |
| 1021 class _DeferredAction { | 1021 class _DeferredAction { |
| 1022 final Element element; | 1022 final Element element; |
| 1023 final _DeferredActionFunction action; | 1023 final _DeferredActionFunction action; |
| 1024 | 1024 |
| 1025 _DeferredAction(this.element, this.action); | 1025 _DeferredAction(this.element, this.action); |
| 1026 } | 1026 } |
| OLD | NEW |