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.world_builder; |
| 6 |
| 7 class KernelNoSuchMethodResolver implements NoSuchMethodResolver { |
| 8 final KernelWorldBuilder _worldBuilder; |
| 9 |
| 10 KernelNoSuchMethodResolver(this._worldBuilder); |
| 11 |
| 12 @override |
| 13 bool hasForwardingSyntax(KFunction method) { |
| 14 return false; |
| 15 } |
| 16 |
| 17 @override |
| 18 bool hasThrowingSyntax(KFunction method) { |
| 19 return false; |
| 20 } |
| 21 |
| 22 @override |
| 23 FunctionEntity getSuperNoSuchMethod(FunctionEntity method) { |
| 24 return null; |
| 25 } |
| 26 } |
OLD | NEW |