-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude parameterized from name scope (#2781)
Fixes #1209 ## Checklist - [x] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [/] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [/] I have not broken the cheatsheet
- Loading branch information
1 parent
6b8cea8
commit 24b5197
Showing
2 changed files
with
25 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
export type Aaa = Bbb<Ccc>; | ||
--- | ||
|
||
[Content] = 0:12-0:15 | ||
>---< | ||
0| export type Aaa = Bbb<Ccc>; | ||
|
||
[Removal] = 0:12-0:16 | ||
>----< | ||
0| export type Aaa = Bbb<Ccc>; | ||
|
||
[Leading delimiter] = 0:11-0:12 | ||
>-< | ||
0| export type Aaa = Bbb<Ccc>; | ||
|
||
[Trailing delimiter] = 0:15-0:16 | ||
>-< | ||
0| export type Aaa = Bbb<Ccc>; | ||
|
||
[Domain] = 0:0-0:27 | ||
>---------------------------< | ||
0| export type Aaa = Bbb<Ccc>; | ||
|
||
[Insertion delimiter] = " " |
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 |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
abstract_method_signature | ||
public_field_definition | ||
field_definition | ||
generic_type | ||
) | ||
) | ||
|
||
|