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

Unified Diff: pkg/dart2js_incremental/lib/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 | « pkg/dart2js_incremental/lib/caching_compiler.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dart2js_incremental/lib/compiler.dart
diff --git a/pkg/dart2js_incremental/lib/compiler.dart b/pkg/dart2js_incremental/lib/compiler.dart
index 8704b7c9b6c6f522c730776298b5dcbade2f08b4..f0a195e689361ea7bfbdaf7c1d7bc066d6843e3f 100644
--- a/pkg/dart2js_incremental/lib/compiler.dart
+++ b/pkg/dart2js_incremental/lib/compiler.dart
@@ -153,7 +153,7 @@ compileToStream(
class OutputProvider implements CompilerOutput {
final Map<String, String> output = new Map<String, String>();
- EventSink<String> createSink(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 | « pkg/dart2js_incremental/lib/caching_compiler.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698