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

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

Issue 832363002: Remove Compiler.assembledCode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix unittest Created 5 years, 11 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') | site/try/src/compiler_isolate.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dart2js_incremental/lib/dart2js_incremental.dart
diff --git a/pkg/dart2js_incremental/lib/dart2js_incremental.dart b/pkg/dart2js_incremental/lib/dart2js_incremental.dart
index b78716d4a03be92e09f7e69f2ca62d1a98960085..cada67c2a12b6b7b44f7413a6dab1db506b35e25 100644
--- a/pkg/dart2js_incremental/lib/dart2js_incremental.dart
+++ b/pkg/dart2js_incremental/lib/dart2js_incremental.dart
@@ -5,6 +5,7 @@
library dart2js_incremental;
import 'dart:async' show
+ EventSink,
Future;
import 'dart:profiler' show
@@ -72,6 +73,9 @@ class IncrementalCompiler {
if (inputProvider == null) {
throw new ArgumentError('inputProvider is null.');
}
+ if (outputProvider == null) {
+ throw new ArgumentError('outputProvider is null.');
+ }
if (diagnosticHandler == null) {
throw new ArgumentError('diagnosticHandler is null.');
}
« no previous file with comments | « pkg/dart2js_incremental/lib/caching_compiler.dart ('k') | site/try/src/compiler_isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698