Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2015, the Fletch 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.md file. | |
| 4 | |
| 5 library fletchc.fletch_resolution_callbacks; | |
| 6 | |
| 7 import 'package:compiler/src/dart2jslib.dart' show | |
| 8 ResolutionCallbacks; | |
| 9 | |
| 10 import 'fletch_context.dart' show | |
| 11 FletchContext; | |
| 12 | |
| 13 class FletchResolutionCallbacks extends ResolutionCallbacks { | |
| 14 final FletchContext context; | |
| 15 | |
| 16 FletchResolutionCallbacks(this.context); | |
| 17 } | |
| OLD | NEW |