| Index: packages/csslib/lib/src/options.dart
|
| diff --git a/packages/csslib/lib/src/options.dart b/packages/csslib/lib/src/options.dart
|
| index 95e8a2faba8cf06b4e3ea58740418260461fd124..c80370b45d16e2179455f0361381f37b7ba91647 100644
|
| --- a/packages/csslib/lib/src/options.dart
|
| +++ b/packages/csslib/lib/src/options.dart
|
| @@ -40,10 +40,16 @@ class PreprocessorOptions {
|
| /** File to process by the compiler. */
|
| final String inputFile;
|
|
|
| - const PreprocessorOptions({this.verbose: false, this.checked: false,
|
| - this.lessSupport: true, this.warningsAsErrors: false,
|
| - this.throwOnErrors: false, this.throwOnWarnings: false,
|
| - this.useColors: true, this.polyfill: false, this.inputFile});
|
| + const PreprocessorOptions(
|
| + {this.verbose: false,
|
| + this.checked: false,
|
| + this.lessSupport: true,
|
| + this.warningsAsErrors: false,
|
| + this.throwOnErrors: false,
|
| + this.throwOnWarnings: false,
|
| + this.useColors: true,
|
| + this.polyfill: false,
|
| + this.inputFile});
|
|
|
| PreprocessorOptions.fromArgs(ArgResults args)
|
| : warningsAsErrors = args['warnings_as_errors'],
|
|
|