| Index: pkg/analysis_server/test/services/completion/optype_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/optype_test.dart b/pkg/analysis_server/test/services/completion/optype_test.dart
|
| index 8acae697676476a2bdae3698d06d85ba76e3a540..5f2e1e16d9ff40bf08e5105ad7edd6cab6263c99 100644
|
| --- a/pkg/analysis_server/test/services/completion/optype_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/optype_test.dart
|
| @@ -475,6 +475,24 @@ class OpTypeTest {
|
| assertOpType(typeNames: true);
|
| }
|
|
|
| + test_FormalParameter_partialType() {
|
| + // FormalParameterList MethodDeclaration
|
| + addTestSource('class A {a(b.^ f) { }}');
|
| + assertOpType(invocation: true);
|
| + }
|
| +
|
| + test_FormalParameter_partialType2() {
|
| + // FormalParameterList MethodDeclaration
|
| + addTestSource('class A {a(b.z^ f) { }}');
|
| + assertOpType(invocation: true);
|
| + }
|
| +
|
| + test_FormalParameter_partialType3() {
|
| + // FormalParameterList MethodDeclaration
|
| + addTestSource('class A {a(b.^) { }}');
|
| + assertOpType(invocation: true);
|
| + }
|
| +
|
| test_FormalParameterList() {
|
| // FormalParameterList MethodDeclaration
|
| addTestSource('class A {a(^) { }}');
|
|
|