-
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 3786c5e into dev
- Loading branch information
Showing
13 changed files
with
329 additions
and
115 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
61 changes: 61 additions & 0 deletions
61
pkg/analysis_server/test/services/completion/dart/location/as_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,61 @@ | ||
// 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(AsExpressionTest); | ||
}); | ||
} | ||
|
||
@reflectiveTest | ||
class AsExpressionTest extends AbstractCompletionDriverTest { | ||
Future<void> test_expression() async { | ||
await computeSuggestions(''' | ||
void f(Object v01) { | ||
^ as int; | ||
} | ||
'''); | ||
includeKeywords = false; | ||
assertResponse(r''' | ||
suggestions | ||
v01 | ||
kind: parameter | ||
'''); | ||
} | ||
|
||
Future<void> test_expression_partial() async { | ||
await computeSuggestions(''' | ||
void f(Object v01) { | ||
v0^ as int; | ||
} | ||
'''); | ||
assertResponse(r''' | ||
replacement | ||
left: 2 | ||
suggestions | ||
v01 | ||
kind: parameter | ||
'''); | ||
} | ||
|
||
Future<void> test_type_partial() async { | ||
await computeSuggestions(''' | ||
class A01 {} | ||
void f(Object x) { | ||
x as A0^; | ||
} | ||
'''); | ||
assertResponse(r''' | ||
replacement | ||
left: 2 | ||
suggestions | ||
A01 | ||
kind: class | ||
'''); | ||
} | ||
} |
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
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.