Index: pkg/fletchc/lib/src/fletch_resolution_callbacks.dart |
diff --git a/pkg/fletchc/lib/src/fletch_resolution_callbacks.dart b/pkg/fletchc/lib/src/fletch_resolution_callbacks.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c0dacf2ce351976c25fe186a59ec3aa7edefbc6e |
--- /dev/null |
+++ b/pkg/fletchc/lib/src/fletch_resolution_callbacks.dart |
@@ -0,0 +1,17 @@ |
+// Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file |
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE.md file. |
+ |
+library fletchc.fletch_resolution_callbacks; |
+ |
+import 'package:compiler/src/dart2jslib.dart' show |
+ ResolutionCallbacks; |
+ |
+import 'fletch_context.dart' show |
+ FletchContext; |
+ |
+class FletchResolutionCallbacks extends ResolutionCallbacks { |
+ final FletchContext context; |
+ |
+ FletchResolutionCallbacks(this.context); |
+} |