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

Unified Diff: pkg/compiler/lib/src/dart2js.dart

Issue 2116483002: Handle constant ?? expressions in constructors. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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
Index: pkg/compiler/lib/src/dart2js.dart
diff --git a/pkg/compiler/lib/src/dart2js.dart b/pkg/compiler/lib/src/dart2js.dart
index f07af9d1b28d4a5e2743dbc529809f29f80245e3..4301a55e5c186c1302f0b31e491fff43432f0b14 100644
--- a/pkg/compiler/lib/src/dart2js.dart
+++ b/pkg/compiler/lib/src/dart2js.dart
@@ -536,7 +536,7 @@ Future<api.CompilationResult> compile(List<String> argv) {
packageConfig: packageConfig,
packagesDiscoveryProvider: findPackages,
resolutionInputs: resolutionInputs,
- resolutionOutput: resolveOnly ? resolutionOutput: null,
+ resolutionOutput: resolveOnly ? resolutionOutput : null,
options: options,
environment: environment);
return compileFunc(

Powered by Google App Engine
This is Rietveld 408576698