| Index: pkg/analyzer/test/generated/engine_test.dart
|
| diff --git a/pkg/analyzer/test/generated/engine_test.dart b/pkg/analyzer/test/generated/engine_test.dart
|
| index ad68a206357ef8f2ce8b7ff5d72b1bae4458cc18..af6dac39cd6610c49a6244fcb68f69fe43fd1378 100644
|
| --- a/pkg/analyzer/test/generated/engine_test.dart
|
| +++ b/pkg/analyzer/test/generated/engine_test.dart
|
| @@ -2268,6 +2268,7 @@ class AnalysisOptionsImplTest extends EngineTestCase {
|
| options.hint = booleanValue;
|
| options.incremental = booleanValue;
|
| options.preserveComments = booleanValue;
|
| + options.strongMode = booleanValue;
|
| AnalysisOptionsImpl copy = new AnalysisOptionsImpl.from(options);
|
| expect(copy.analyzeFunctionBodies, options.analyzeFunctionBodies);
|
| expect(copy.cacheSize, options.cacheSize);
|
| @@ -2278,6 +2279,7 @@ class AnalysisOptionsImplTest extends EngineTestCase {
|
| expect(copy.hint, options.hint);
|
| expect(copy.incremental, options.incremental);
|
| expect(copy.preserveComments, options.preserveComments);
|
| + expect(copy.strongMode, options.strongMode);
|
| }
|
| }
|
|
|
| @@ -2303,6 +2305,13 @@ class AnalysisOptionsImplTest extends EngineTestCase {
|
| expect(options.dart2jsHint, value);
|
| }
|
|
|
| + void test_strongMode() {
|
| + AnalysisOptionsImpl options = new AnalysisOptionsImpl();
|
| + bool value = !options.strongMode;
|
| + options.strongMode = value;
|
| + expect(options.strongMode, value);
|
| + }
|
| +
|
| void test_generateImplicitErrors() {
|
| AnalysisOptionsImpl options = new AnalysisOptionsImpl();
|
| bool value = !options.generateImplicitErrors;
|
|
|