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

Side by Side Diff: pkg/analyzer/test/src/context/builder_test.dart

Issue 2196363003: Make analyzer strong-mode clean (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library analyzer.test.src.context.context_builder_test; 5 library analyzer.test.src.context.context_builder_test;
6 6
7 import 'dart:io' as io; 7 import 'dart:io' as io;
8 8
9 import 'package:analyzer/file_system/file_system.dart'; 9 import 'package:analyzer/file_system/file_system.dart';
10 import 'package:analyzer/file_system/memory_file_system.dart'; 10 import 'package:analyzer/file_system/memory_file_system.dart';
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 expect(actual.analyzeFunctionBodiesPredicate, 672 expect(actual.analyzeFunctionBodiesPredicate,
673 same(expected.analyzeFunctionBodiesPredicate)); 673 same(expected.analyzeFunctionBodiesPredicate));
674 expect(actual.cacheSize, expected.cacheSize); 674 expect(actual.cacheSize, expected.cacheSize);
675 expect(actual.dart2jsHint, expected.dart2jsHint); 675 expect(actual.dart2jsHint, expected.dart2jsHint);
676 expect(actual.enableAssertMessage, expected.enableAssertMessage); 676 expect(actual.enableAssertMessage, expected.enableAssertMessage);
677 expect(actual.enableAsync, expected.enableAsync); 677 expect(actual.enableAsync, expected.enableAsync);
678 expect(actual.enableStrictCallChecks, expected.enableStrictCallChecks); 678 expect(actual.enableStrictCallChecks, expected.enableStrictCallChecks);
679 expect(actual.enableGenericMethods, expected.enableGenericMethods); 679 expect(actual.enableGenericMethods, expected.enableGenericMethods);
680 expect(actual.enableSuperMixins, expected.enableSuperMixins); 680 expect(actual.enableSuperMixins, expected.enableSuperMixins);
681 expect(actual.enableTiming, expected.enableTiming); 681 expect(actual.enableTiming, expected.enableTiming);
682 expect(actual.enableTrailingCommas, expected.enableTrailingCommas);
683 expect(actual.generateImplicitErrors, expected.generateImplicitErrors); 682 expect(actual.generateImplicitErrors, expected.generateImplicitErrors);
684 expect(actual.generateSdkErrors, expected.generateSdkErrors); 683 expect(actual.generateSdkErrors, expected.generateSdkErrors);
685 expect(actual.hint, expected.hint); 684 expect(actual.hint, expected.hint);
686 expect(actual.incremental, expected.incremental); 685 expect(actual.incremental, expected.incremental);
687 expect(actual.incrementalApi, expected.incrementalApi); 686 expect(actual.incrementalApi, expected.incrementalApi);
688 expect(actual.incrementalValidation, expected.incrementalValidation); 687 expect(actual.incrementalValidation, expected.incrementalValidation);
689 expect(actual.lint, expected.lint); 688 expect(actual.lint, expected.lint);
690 expect(actual.preserveComments, expected.preserveComments); 689 expect(actual.preserveComments, expected.preserveComments);
691 expect(actual.strongMode, expected.strongMode); 690 expect(actual.strongMode, expected.strongMode);
692 expect(actual.strongModeHints, expected.strongModeHints); 691 expect(actual.strongModeHints, expected.strongModeHints);
693 expect(actual.implicitCasts, expected.implicitCasts); 692 expect(actual.implicitCasts, expected.implicitCasts);
694 expect(actual.implicitDynamic, expected.implicitDynamic); 693 expect(actual.implicitDynamic, expected.implicitDynamic);
695 expect(actual.trackCacheDependencies, expected.trackCacheDependencies); 694 expect(actual.trackCacheDependencies, expected.trackCacheDependencies);
696 expect(actual.finerGrainedInvalidation, expected.finerGrainedInvalidation); 695 expect(actual.finerGrainedInvalidation, expected.finerGrainedInvalidation);
697 } 696 }
698 } 697 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/generated/strong_mode_test.dart ('k') | pkg/analyzer/test/src/context/context_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698