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

Unified Diff: pkg/dart2js_incremental/lib/caching_compiler.dart

Issue 1234873006: dart2js: fix try/poi after refactor (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/dart2js_incremental/lib/compiler.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dart2js_incremental/lib/caching_compiler.dart
diff --git a/pkg/dart2js_incremental/lib/caching_compiler.dart b/pkg/dart2js_incremental/lib/caching_compiler.dart
index eceea65aa8ea82a9afd2e7011388f899f41a5e1a..2bc2047dcbfdc0ddb44f01782ba2a15d913d184e 100644
--- a/pkg/dart2js_incremental/lib/caching_compiler.dart
+++ b/pkg/dart2js_incremental/lib/caching_compiler.dart
@@ -185,10 +185,10 @@ class StringEventSink implements EventSink<String> {
}
/// Output provider which collect output in [output].
-class OutputProvider {
+class OutputProvider implements CompilerOutput {
final Map<String, String> output = new Map<String, String>();
- EventSink<String> call(String name, String extension) {
+ EventSink<String> createEventSink(String name, String extension) {
return new StringEventSink((String data) {
output['$name.$extension'] = data;
});
« no previous file with comments | « no previous file | pkg/dart2js_incremental/lib/compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698