-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge 6357371 into dev
- Loading branch information
Showing
53 changed files
with
1,798 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
pkg/analysis_server/test/services/completion/dart/location/index_expression_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
import 'package:test_reflective_loader/test_reflective_loader.dart'; | ||
|
||
import '../../../../client/completion_driver_test.dart'; | ||
|
||
void main() { | ||
defineReflectiveSuite(() { | ||
defineReflectiveTests(IndexExpressionTest); | ||
}); | ||
} | ||
|
||
@reflectiveTest | ||
class IndexExpressionTest extends AbstractCompletionDriverTest { | ||
Future<void> test_index() async { | ||
await computeSuggestions(''' | ||
void f(List<int> v, int a01) { | ||
v[a0^]; | ||
} | ||
'''); | ||
assertResponse(r''' | ||
replacement | ||
left: 2 | ||
suggestions | ||
a01 | ||
kind: parameter | ||
'''); | ||
} | ||
|
||
Future<void> test_target() async { | ||
await computeSuggestions(''' | ||
void f(List<int> a01) { | ||
a0^[0]; | ||
} | ||
'''); | ||
assertResponse(r''' | ||
replacement | ||
left: 2 | ||
suggestions | ||
a01 | ||
kind: parameter | ||
'''); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.