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

Side by Side Diff: pkg/analyzer/test/generated/strong_mode_test.dart

Issue 2628013002: Don't instantiate a new InterfaceTypeImpl for a ClassElement without type parameters. (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « pkg/analyzer/lib/src/summary/resynthesize.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.generated.strong_mode_test; 5 library analyzer.test.generated.strong_mode_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:analyzer/dart/ast/ast.dart'; 9 import 'package:analyzer/dart/ast/ast.dart';
10 import 'package:analyzer/dart/ast/standard_resolution_map.dart'; 10 import 'package:analyzer/dart/ast/standard_resolution_map.dart';
(...skipping 2408 matching lines...) Expand 10 before | Expand all | Expand 10 after
2419 await assertPropagatedAssignedType(code, typeProvider.intType, null); 2419 await assertPropagatedAssignedType(code, typeProvider.intType, null);
2420 await assertTypeOfMarkedExpression(code, typeProvider.intType, null); 2420 await assertTypeOfMarkedExpression(code, typeProvider.intType, null);
2421 } 2421 }
2422 } 2422 }
2423 2423
2424 @reflectiveTest 2424 @reflectiveTest
2425 class StrongModeTypePropagationTest_Driver 2425 class StrongModeTypePropagationTest_Driver
2426 extends StrongModeTypePropagationTest { 2426 extends StrongModeTypePropagationTest {
2427 @override 2427 @override
2428 bool get enableNewAnalysisDriver => true; 2428 bool get enableNewAnalysisDriver => true;
2429
2430 @failingTest
2431 @override
2432 test_localVariableInference_transitive_field_inferred_lexical() {
2433 return super
2434 .test_localVariableInference_transitive_field_inferred_lexical();
2435 }
2436
2437 @failingTest
2438 @override
2439 test_localVariableInference_transitive_field_inferred_reversed() {
2440 return super
2441 .test_localVariableInference_transitive_field_inferred_reversed();
2442 }
2443
2444 @failingTest
2445 @override
2446 test_localVariableInference_transitive_field_lexical() {
2447 return super.test_localVariableInference_transitive_field_lexical();
2448 }
2449
2450 @failingTest
2451 @override
2452 test_localVariableInference_transitive_field_reversed() {
2453 return super.test_localVariableInference_transitive_field_reversed();
2454 }
2455 } 2429 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/summary/resynthesize.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698