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

Side by Side Diff: pkg/analyzer/test/src/summary/resynthesize_ast_test.dart

Issue 2662973005: Suppress NO_DEFAULT_BOUND errors. (Closed)
Patch Set: Created 3 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 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.summary.resynthesize_ast_test; 5 library analyzer.test.src.summary.resynthesize_ast_test;
6 6
7 import 'package:analyzer/dart/ast/ast.dart'; 7 import 'package:analyzer/dart/ast/ast.dart';
8 import 'package:analyzer/dart/element/element.dart'; 8 import 'package:analyzer/dart/element/element.dart';
9 import 'package:analyzer/error/error.dart'; 9 import 'package:analyzer/error/error.dart';
10 import 'package:analyzer/src/dart/element/element.dart'; 10 import 'package:analyzer/src/dart/element/element.dart';
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 super.createOptions()..strongMode = false; 713 super.createOptions()..strongMode = false;
714 } 714 }
715 715
716 @reflectiveTest 716 @reflectiveTest
717 class ResynthesizeAstStrongTest extends _ResynthesizeAstTest { 717 class ResynthesizeAstStrongTest extends _ResynthesizeAstTest {
718 @override 718 @override
719 AnalysisOptionsImpl createOptions() => 719 AnalysisOptionsImpl createOptions() =>
720 super.createOptions()..strongMode = true; 720 super.createOptions()..strongMode = true;
721 721
722 @override 722 @override
723 @failingTest
724 test_instantiateToBounds_boundRefersToItself() { 723 test_instantiateToBounds_boundRefersToItself() {
725 super.test_instantiateToBounds_boundRefersToItself(); 724 super.test_instantiateToBounds_boundRefersToItself();
726 } 725 }
727 726
728 @override 727 @override
729 @failingTest 728 @failingTest
730 test_syntheticFunctionType_genericClosure() { 729 test_syntheticFunctionType_genericClosure() {
731 super.test_syntheticFunctionType_genericClosure(); 730 super.test_syntheticFunctionType_genericClosure();
732 } 731 }
733 732
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 } 935 }
937 936
938 @override 937 @override
939 DartSdk createDartSdk() => AbstractContextTest.SHARED_MOCK_SDK; 938 DartSdk createDartSdk() => AbstractContextTest.SHARED_MOCK_SDK;
940 939
941 @override 940 @override
942 TestSummaryResynthesizer encodeDecodeLibrarySource(Source source) { 941 TestSummaryResynthesizer encodeDecodeLibrarySource(Source source) {
943 return _encodeLibrary(source); 942 return _encodeLibrary(source);
944 } 943 }
945 } 944 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/generated/strong_mode_test.dart ('k') | pkg/analyzer/test/src/task/strong/inferred_type_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698