OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library dart2js.common.registry; | |
6 | |
7 import '../elements/elements.dart' show Element; | |
8 | |
9 // TODO(johnniwinther): Remove this. | |
10 /// Interface for registration of element dependencies. | |
11 abstract class Registry { | |
12 void registerDependency(Element element) {} | |
13 } | |
OLD | NEW |