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

Unified Diff: lib/src/options.dart

Issue 963063003: DDC fixes on DDC (Closed) Base URL: https://github.com/dart-lang/dev_compiler.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/src/js/template.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/options.dart
diff --git a/lib/src/options.dart b/lib/src/options.dart
index 42d22d5df2ad97913669c4dacc8e994d9ea29c0e..007fe07dce5af3ef1b695aa9021136f03c6e0b02 100644
--- a/lib/src/options.dart
+++ b/lib/src/options.dart
@@ -54,7 +54,7 @@ class ResolverOptions {
final bool onlyInferConstsAndFinalFields;
ResolverOptions({this.useMultiPackage: false, this.packageRoot: 'packages/',
- this.packagePaths: const [], this.inferFromOverrides: true,
+ this.packagePaths: const <String>[], this.inferFromOverrides: true,
this.inferStaticsFromIdentifiers: false,
this.inferInNonStableOrder: false,
this.onlyInferConstsAndFinalFields: false});
@@ -187,7 +187,7 @@ class CompilerOptions implements RulesOptions, ResolverOptions {
this.outputDart: false, this.useColors: true,
this.covariantGenerics: true, this.relaxedCasts: true,
this.useMultiPackage: false, this.packageRoot: 'packages/',
- this.packagePaths: const [], this.inferFromOverrides: true,
+ this.packagePaths: const <String>[], this.inferFromOverrides: true,
this.inferStaticsFromIdentifiers: false,
this.inferInNonStableOrder: false,
this.onlyInferConstsAndFinalFields: false,
« no previous file with comments | « lib/src/js/template.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698