Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(789)

Side by Side Diff: pkg/fletchc/lib/src/fletch_resolution_callbacks.dart

Issue 918613002: Refactor implementation to address review comments and API design suggestions from Luke. (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« pkg/fletchc/lib/src/bytecode_builder.dart ('K') | « pkg/fletchc/lib/src/fletch_context.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698