| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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.task.strong_mode_test; | 5 library analyzer.test.src.task.strong_mode_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analyzer/dart/element/element.dart'; | 9 import 'package:analyzer/dart/element/element.dart'; |
| 10 import 'package:analyzer/dart/element/type.dart'; | 10 import 'package:analyzer/dart/element/type.dart'; |
| (...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 // are treated as independent methods. | 942 // are treated as independent methods. |
| 943 expect(setterB.parameters[0].type, setterA.parameters[0].type); | 943 expect(setterB.parameters[0].type, setterA.parameters[0].type); |
| 944 | 944 |
| 945 // Note that B's synthetic field type will be String. This matches what | 945 // Note that B's synthetic field type will be String. This matches what |
| 946 // resolver would do if we explicitly typed the parameter as 'String' | 946 // resolver would do if we explicitly typed the parameter as 'String' |
| 947 expect(fieldB.type, setterB.parameters[0].type); | 947 expect(fieldB.type, setterB.parameters[0].type); |
| 948 } | 948 } |
| 949 | 949 |
| 950 InstanceMemberInferrer _runInferrer(CompilationUnitElement unit) { | 950 InstanceMemberInferrer _runInferrer(CompilationUnitElement unit) { |
| 951 InstanceMemberInferrer inferrer = createInferrer(unit.library); | 951 InstanceMemberInferrer inferrer = createInferrer(unit.library); |
| 952 inferrer.inferInstanceMethods(unit); | |
| 953 inferrer.inferCompilationUnit(unit); | 952 inferrer.inferCompilationUnit(unit); |
| 954 return inferrer; | 953 return inferrer; |
| 955 } | 954 } |
| 956 } | 955 } |
| 957 | 956 |
| 958 @reflectiveTest | 957 @reflectiveTest |
| 959 class SetFieldTypeTest extends ResolverTestCase { | 958 class SetFieldTypeTest extends ResolverTestCase { |
| 960 test_setter_withoutParameter() async { | 959 test_setter_withoutParameter() async { |
| 961 Source source = addSource(''' | 960 Source source = addSource(''' |
| 962 var x = 0; | 961 var x = 0; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1032 } | 1031 } |
| 1033 } | 1032 } |
| 1034 } | 1033 } |
| 1035 '''); | 1034 '''); |
| 1036 var analysisResult = await computeAnalysisResult(source); | 1035 var analysisResult = await computeAnalysisResult(source); |
| 1037 VariableGatherer gatherer = new VariableGatherer(filter); | 1036 VariableGatherer gatherer = new VariableGatherer(filter); |
| 1038 analysisResult.unit.accept(gatherer); | 1037 analysisResult.unit.accept(gatherer); |
| 1039 return gatherer.results; | 1038 return gatherer.results; |
| 1040 } | 1039 } |
| 1041 } | 1040 } |
| OLD | NEW |