| Index: pkg/analysis_server/test/services/completion/completion_target_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/completion_target_test.dart b/pkg/analysis_server/test/services/completion/completion_target_test.dart
|
| index e416cb40310b9101aa5417c024e5cf56980d4a7e..8e98b005dc21421c035f469b813aa166ff482907 100644
|
| --- a/pkg/analysis_server/test/services/completion/completion_target_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/completion_target_test.dart
|
| @@ -65,6 +65,18 @@ class CompletionTargetTest extends AbstractContextTest {
|
| assertTarget(')', '()', argIndex: 0, isFunctionalArgument: true);
|
| }
|
|
|
| + test_TypeArgumentList() {
|
| + // SimpleIdentifier BinaryExpression ExpressionStatement
|
| + addTestSource('main() { C<^> c; }');
|
| + assertTarget('', 'C < ');
|
| + }
|
| +
|
| + test_TypeArgumentList2() {
|
| + // TypeName TypeArgumentList TypeName
|
| + addTestSource('main() { C<C^> c; }');
|
| + assertTarget('C', '<C>');
|
| + }
|
| +
|
| test_ArgumentList_MethodInvocation() {
|
| // ArgumentList MethodInvocation Block
|
| addTestSource('main() {foo(^)}');
|
|
|