| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |