| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2017, 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 part of dart2js.kernel.element_map; | |
| 6 | |
| 7 /// Interface for computing all native classes in a set of libraries. | |
| 8 class KernelNativeClassResolver implements NativeClassResolver { | |
| 9 final KernelToElementMap elementMap; | |
| 10 | |
| 11 KernelNativeClassResolver(this.elementMap); | |
| 12 | |
| 13 Iterable<ClassEntity> computeNativeClasses( | |
| 14 Iterable<LibraryEntity> libraries) { | |
| 15 // TODO(johnniwinther): Implement this. | |
| 16 return const <ClassEntity>[]; | |
| 17 } | |
| 18 } | |
| OLD | NEW |