Rust
Below are visualizations of all our scope tests for this language. These were created primarily for testing purposes rather than as documentation. There are quite a few, and they may feel a bit overwhelming from a documentation standpoint.
Scopes
Anonymous function
1. Anonymous function
An anonymous function, eg a lambda function, an arrow function, etc.Argument list
1. Argument list: Actual empty
An empty list of arguments in a function call. Insertion delimiter should be empty.2. Argument list: Actual enum empty
An empty list of arguments in an enum constructor call. Insertion delimiter should be empty.3. Argument list: Actual enum multi line
A multi line list of arguments in an enum constructor call. Insertion delimiter should include new line.4. Argument list: Actual enum single line
A single line list of arguments in an enum constructor call5. Argument list: Actual method empty
An empty list of arguments in a method call. Insertion delimiter should be empty.6. Argument list: Actual method multi line
A multi line list of arguments in a method call. Insertion delimiter should include new line.7. Argument list: Actual method single line
A single line list of arguments in a method call8. Argument list: Actual multi line
A multi line list of arguments in a function call. Insertion delimiter should include new line.9. Argument list: Actual single line
A single line list of arguments in a function call10. Argument list: Formal empty
An empty list of parameters in a function declaration. Insertion delimiter should be empty.11. Argument list: Formal lambda empty
An empty list of parameters in a lambda declaration. Insertion delimiter should be empty.12. Argument list: Formal lambda multi line
A multi line list of parameters in a lambda declaration. Insertion delimiter should include new line.13. Argument list: Formal lambda single line
A single line list of parameters in a lambda declaration14. Argument list: Formal method empty
An empty list of parameters in a class method declaration. Insertion delimiter should be empty.15. Argument list: Formal method multi line
A multi line list of parameters in a class method declaration. Insertion delimiter should include new line.16. Argument list: Formal method single line
A single line list of parameters in a class method declaration17. Argument list: Formal multi line
A multi line list of parameters in a function declaration. Insertion delimiter should include new line.18. Argument list: Formal single line
A single line list of parameters in a function declarationArgument or parameter
1. Argument: Actual enum multi line
A multi line argument in an enum constructor call. Insertion delimiter should include new line.2. Argument: Actual enum single line
A single line argument in an enum constructor call3. Argument: Actual method multi line
A multi line argument in a method call. Insertion delimiter should include new line.4. Argument: Actual method single line
A single line argument in a method call5. Argument: Actual multi line
A multiline argument in a function call. Insertion delimiter should include new line.6. Argument: Actual single line
A single line argument in a function call7. Argument: Formal lambda multi line
A multi line parameter in a lambda declaration. Insertion delimiter should include new line.8. Argument: Formal lambda single line
A single line parameter in a lambda declaration9. Argument: Formal method multi line
A multi line parameter in a class method declaration. Insertion delimiter should include new line.10. Argument: Formal method single line
A single line parameter in a class method declaration11. Argument: Formal multi line
A multi line parameter in a function declaration. Insertion delimiter should include new line.12. Argument: Formal single line
A single line parameter in a function declaration13. Argument: Actual (iteration)
Iteration scope for arguments in a function call: the argument list. The domain should be the entire function call.14. Argument: Actual enum (iteration)
Iteration scope for arguments in an enum constructor call: the argument list. The domain should be the entire enum constructor call..15. Argument: Actual method (iteration)
Iteration scope for arguments in a method call: the argument list. The domain should be the entire method call.16. Argument: Formal (iteration)
Iteration scope for formal parameters in a function declaration: the parameters list. The domain should be the entire function.17. Argument: Formal lambda (iteration)
Iteration scope for formal parameters in a lambda declaration: the parameter list. The domain should be the entire lambda.18. Argument: Formal method (iteration)
Iteration scope for formal parameters in a method declaration: the parameter list. The domain should be the entire method.Branch
1. Branch: If
An if branch2. Branch: If elif else
An if-elif-else branch. The removal range for the if branch should include the trailingelse keyword.3. Branch: If else
An if-else branch4. Branch: Switch case
A case/default branch in a switch statement5. Branch: If (iteration)
Iteration scope for if/elif/else branches: the if-else statement.6. Branch: Switch case (iteration)
Iteration scope for switch branches: the switch statement body.Class
1. Class
A class/struct in an object-oriented language2. Class (iteration document)
Iteration scope for classes: the entire document including leading and trailing empty lines.Collection key
1. Key: Map pair
Key (LHS) of a key-value pair of a map2. Key: Map pair (iteration)
Iteration scope for keys of key-value pairs in a map: should be between the braces.Comment
1. Comment: Block
A block comment2. Comment: Line
A line commentCondition
1. Condition: If
A condition in an if statement2. Condition: Switch case
A condition in a switch statement3. Condition: While
A condition in a while loop4. Condition: Switch case (iteration)
Iteration scope for conditions in a switch statement: the switch statement body.Function call
1. Function call
A function call2. Function call: Chain
A chain of function calls, egfoo().bar()3. Function call: Enum
An enum constructor call4. Function call: Generic
A function call with generic type arguments5. Function call: Method
A method callFunction callee
1. Function callee
The function being called in a function call2. Function callee: Chain
The function being called in a chain of function calls, including parent objects.3. Function callee: Enum
The enum constructor being called4. Function callee: Generic
The function being called in a function call with generic type arguments5. Function callee: Method
The function being called in a method call, including parent objects.If statement
1. If statement
An if statementList
1. List
A list/arrayMap
1. Map
A map/dictionaryName
1. Name: Argument formal
Name of a parameter in a function declaration2. Name: Argument formal lambda
Name of a parameter in a lambda declaration3. Name: Argument formal method
Name of a parameter in a class method declaration4. Name: Assignment
Name (LHS) of an assignment5. Name: Assignment compound
Name (LHS) of a compound assignment, eg +=/-=6. Name: Assignment destructuring
LHS of an assignment with pattern destructuring7. Name: Class
Name of a class8. Name: Constant
Name (LHS) of a constant declaration9. Name: Enum
Name of an enum10. Name: Field class
Name (LHS) of a field in a class11. Name: Field enum
Name (LHS) of a field in an enum12. Name: Foreach
Iteration variable name in a for each loop13. Name: Function
Name of a function14. Name: Method
Name of a class method15. Name: Namespace
Name of a namespace16. Name: Type alias
Name of a type alias17. Name: Variable destructuring
Name (LHS) of a variable declaration with pattern destructuring18. Name: Variable initialized
Name (LHS) of an initialized variable declaration19. Name: Variable uninitialized
Name (LHS) of an uninitialized variable declaration20. Name (iteration block)
Iteration scope for names: statement blocks (body of functions/if-statements/for-loops/etc).21. Name (iteration class)
Iteration scope for names: class bodies.22. Name (iteration document)
Iteration scope for names: the entire document including leading and trailing empty lines.23. Name (iteration enum)
Iteration scope for names: enum bodies.24. Name: Argument formal (iteration)
Iteration scope for names of formal parameters in a function declaration: the parameters list.25. Name: Argument formal lambda (iteration)
Iteration scope for names of formal parameters in a lambda declaration: the parameters list.26. Name: Argument formal method (iteration)
Iteration scope for names of formal parameters in a method declaration: the parameters list.Named function
1. Named function
A named function declaration2. Named function: Method
A named method declaration in a class3. Named function (iteration class)
Iteration scope for named functions: class bodies.4. Named function (iteration document)
Iteration scope for named functions: the entire document including leading and trailing empty lines.Statement
1. Statement: Assignment
An assignment statement2. Statement: Assignment compound
A compound assignment statement, eg +=/-=3. Statement: Assignment destructuring
An assignment statement with pattern destructuring4. Statement: Break
A break statement5. Statement: Class
A class/struct declaration6. Statement: Constant
A constant declaration7. Statement: Continue
A continue statement8. Statement: Enum
An enum declaration9. Statement: Field class
A field declaration in a class/struct10. Statement: Foreach
A for-each loop statement11. Statement: Function
A named function declaration12. Statement: Function call
A function call statement13. Statement: If
A if/elif/else statement14. Statement: Import
An import statement15. Statement: Method
A method declaration16. Statement: Namespace
A namespace declaration17. Statement: Package
A package declaration18. Statement: Return
A return statement19. Statement: Switch
A switch statement20. Statement: Type alias
A type alias declaration21. Statement: Update
An update statement, eg ++/--22. Statement: Variable destructuring
A variable declaration pattern destructuring23. Statement: Variable initialized
An initialized variable declaration24. Statement: Variable uninitialized
An uninitialized variable declaration25. Statement: While
A while loop statement26. Statement (iteration block)
Iteration scope for statements: statement blocks (body of functions/if-statements/for-loops/etc).27. Statement (iteration class)
Iteration scope for statements: class bodies.28. Statement (iteration document)
Iteration scope for statements: the entire document including leading and trailing empty lines.Type
1. Type: Alias
A type alias declaration2. Type: Argument formal
Type of a formal parameter in a function declaration3. Type: Argument formal lambda
Type of a formal parameter in a lambda declaration4. Type: Argument formal method
Type of a formal parameter in a class method declaration5. Type: Cast
A type cast6. Type: Class
A class declaration7. Type: Constant
Type of a constant declaration8. Type: Enum
An enum declaration9. Type: Field class
Type of a field in a class10. Type: Return
Type of a return value in a function declaration11. Type: Return lambda
Type of a return value in a lambda declaration12. Type: Return method
Type of a return value in a method declaration13. Type: Type argument
Type argument to a generic / parametrized type14. Type: Variable initialized
Type of an initialized variable declaration15. Type: Variable uninitialized
Type of an uninitialized variable declaration16. Type (iteration block)
Iteration scope for types: statement blocks (body of functions/if-statements/for-loops/etc).17. Type (iteration class)
Iteration scope for types: class bodies.18. Type (iteration document)
Iteration scope for types: the entire document including leading and trailing empty lines.19. Type: Argument formal (iteration)
Iteration scope for types of formal parameters in a function declaration: the parameters list.20. Type: Argument formal lambda (iteration)
Iteration scope for types of formal parameters in a lambda declaration: the parameters list.21. Type: Argument formal method (iteration)
Iteration scope for types of formal parameters in a method declaration: the parameters list.22. Type: Type argument (iteration)
Iteration scope for type arguments to a generic / parametrized type: the type argument list.Value
1. Value: Assignment
Value (RHS) of an assignment2. Value: Assignment compound
Value (RHS) of a compound assignment, eg +=/-=3. Value: Assignment destructuring
Value (RHS) of an assignment with pattern destructuring4. Value: Constant
Value (RHS) of a constant declaration5. Value: Foreach
Iterable in a for each loop6. Value: Map pair
Value (RHS) of a key-value pair in a map7. Value: Return
Return value of a function8. Value: Return lambda
Implicit return value from a lambda9. Value: Switch
The value / subject of a switch statement10. Value: Type alias
Value of a type alias declaration11. Value: Variable
Value (RHS) of a variable declaration12. Value: Variable destructuring
Value (RHS) of a variable declaration with pattern destructuring13. Value (iteration block)
Iteration scope for values: statement blocks (body of functions/if-statements/for-loops/etc).14. Value (iteration class)
Iteration scope for values: class bodies.15. Value (iteration document)
Iteration scope for values: the entire document including leading and trailing empty lines.16. Value: Map pair (iteration)
Iteration scope for values of key-value pairs in a map: should be between the braces.Internal scopes
The following are internal scopes. They are not intended for user interaction or spoken use. These scopes exist solely for internal Cursorless functionality.
Disqualify delimiter
1. Disqualify delimiter
Internally used to disqualify a token from being treated as a surrounding pair delimiter. This will usually be operators containing> or <, eg <, <=, ->, etc.