Scala
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 constructor empty
An empty list of arguments in a constructor call. Insertion delimiter should be empty.2. Argument list: Actual constructor multi line
A multi-line list of arguments in a constructor call. Insertion delimiter should include a newline.3. Argument list: Actual constructor single line
A single-line list of arguments in a constructor call4. Argument list: Actual empty
An empty list of arguments in a function call. Insertion delimiter should be empty.5. 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 a newline.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 a newline.9. Argument list: Actual single line
A single-line list of arguments in a function call10. Argument list: Formal constructor empty
An empty list of parameters in a constructor declaration. Insertion delimiter should be empty.11. Argument list: Formal constructor multi line
A multi-line list of parameters in a constructor declaration. Insertion delimiter should include a newline.12. Argument list: Formal constructor single line
A single-line list of parameters in a constructor declaration13. Argument list: Formal empty
An empty list of parameters in a function declaration. Insertion delimiter should be empty.14. Argument list: Formal lambda empty
An empty list of parameters in an anonymous function. Insertion delimiter should be empty.15. Argument list: Formal lambda multi line
A multi-line list of parameters in an anonymous function. Insertion delimiter should include a newline.16. Argument list: Formal lambda single line
A single-line list of parameters in an anonymous function17. Argument list: Formal method empty
An empty list of parameters in a method declaration. Insertion delimiter should be empty.18. Argument list: Formal method multi line
A multi-line list of parameters in a method declaration. Insertion delimiter should include a newline.19. Argument list: Formal method single line
A single-line list of parameters in a method declaration20. Argument list: Formal multi line
A multi-line list of parameters in a function declaration. Insertion delimiter should include a newline.21. Argument list: Formal single line
A single-line list of parameters in a function declarationArgument or parameter
1. Argument: Actual constructor multi line
A multi-line argument in a constructor call. Insertion delimiter should include a newline.2. Argument: Actual constructor single line
A single-line argument in a constructor call3. Argument: Actual method multi line
A multi-line argument in a method call. Insertion delimiter should include a newline.4. Argument: Actual method single line
A single-line argument in a method call5. Argument: Actual multi line
A multi-line argument in a function call. Insertion delimiter should include a newline.6. Argument: Actual single line
A single-line argument in a function call7. Argument: Formal catch
A parameter in a catch clause8. Argument: Formal constructor multi line
A multi-line parameter in a constructor declaration. Insertion delimiter should include a newline.9. Argument: Formal constructor single line
A single-line parameter in a constructor declaration10. Argument: Formal lambda multi line
A multi-line parameter in an anonymous function. Insertion delimiter should include a newline.11. Argument: Formal lambda single line
A single-line parameter in an anonymous function12. Argument: Formal method multi line
A multi-line parameter in a method declaration. Insertion delimiter should include a newline.13. Argument: Formal method single line
A single-line parameter in a method declaration14. Argument: Formal multi line
A multi-line parameter in a function declaration. Insertion delimiter should include a newline.15. Argument: Formal single line
A single-line parameter in a function declaration16. Argument: Actual (iteration)
Iteration scope for arguments in a function call: the argument list. The domain should be the entire function call.17. Argument: Actual constructor (iteration)
Iteration scope for arguments in a constructor call: the argument list. The domain should be the entire constructor call..18. Argument: Actual method (iteration)
Iteration scope for arguments in a method call: the argument list. The domain should be the entire method call.19. Argument: Formal (iteration)
Iteration scope for parameters in a function declaration: the parameter list. The domain should be the entire function.20. Argument: Formal constructor (iteration)
Iteration scope for parameters in a constructor declaration: the parameter list. The domain should be the entire constructor.21. Argument: Formal lambda (iteration)
Iteration scope for parameters in an anonymous function: the parameter list. The domain should be the entire anonymous function.22. Argument: Formal method (iteration)
Iteration scope for 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: Try
A try/catch/finally branch6. Branch: If (iteration)
Iteration scope for if/elif/else branches: the if/elif/else statement.7. Branch: Switch case (iteration)
Iteration scope for case/default branches in a switch statement: the switch statement body.8. Branch: Try (iteration)
Iteration scope for try/catch/finally branches: the try/catch/finally statement.Class
1. Class
A class/struct declaration2. Class (iteration class)
Iteration scope for classes: class bodies.3. Class (iteration document)
Iteration scope for classes: the entire document including leading and trailing empty lines.Collection item
1. Collection item: Unenclosed multi line
An item in a comma-separated multi-line list without enclosing delimiters. This could be multi-variable declarations, import statements, etc. Insertion delimiter should include a newline.2. Collection item: Unenclosed single line
An item in a comma-separated single-line list without enclosing delimiters. This could be multi-variable declarations, import statements, etc.3. Collection item: Unenclosed (iteration)
Iteration scope for items in a comma-separated list without enclosing delimitersComment
1. Comment: Block
A block comment2. Comment: Line
A line commentCondition
1. Condition: Do while
A condition in a do-while loop2. Condition: If
A condition in an if statement3. Condition: Switch case
A condition in a switch statement4. Condition: While
A condition in a while loop5. 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: Constructor
A 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: Constructor
The class being constructed in a class instantiation, including thenew keyword.4. 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 statementName
1. Name: Argument actual
Name of a (keyword) argument in a function call2. Name: Argument catch
Name of a parameter in a catch clause3. Name: Argument formal
Name of a parameter in a function declaration4. Name: Argument formal constructor
Name of a parameter in a constructor declaration5. Name: Argument formal lambda
Name of a parameter in an anonymous function6. Name: Argument formal method
Name of a parameter in a method declaration7. Name: Assignment
Name (LHS) of an assignment statement8. Name: Assignment compound
Name (LHS) of a compound assignment statement, eg +=/-=9. Name: Class
Name of a class/struct declaration10. Name: Constant
Name (LHS) of a constant declaration11. Name: Enum
Name of an enum declaration12. Name: Field class
Name (LHS) of a field declaration in a class/struct13. Name: Field enum
Name (LHS) of a field declaration in an enum14. Name: Field interface
Name (LHS) of a field declaration in an interface15. Name: Foreach
Iteration variable name in a for-each loop16. Name: Function
Name of a function declaration17. Name: Interface
Name of an interface declaration18. Name: Method
Name of a method declaration19. Name: Method interface
Name of a method declaration in an interface20. Name: Namespace
Name of a namespace declaration21. Name: Type alias
Name (LHS) of a type alias declaration22. Name: Variable destructuring
Name (LHS) of a variable declaration using a destructuring pattern23. Name: Variable initialized
Name (LHS) of an initialized variable declaration24. Name: Variable uninitialized
Name (LHS) of an uninitialized variable declaration25. Name (iteration block)
Iteration scope for names: statement blocks (body of functions/if-statements/for-loops/etc).26. Name (iteration class)
Iteration scope for names: class bodies.27. Name (iteration document)
Iteration scope for names: the entire document including leading and trailing empty lines.28. Name (iteration enum)
Iteration scope for names: enum bodies.29. Name (iteration interface)
Iteration scope for names: interface bodies.30. Name: Argument actual (iteration)
Iteration scope for names of (keyword) arguments in a function call: the argument list.31. Name: Argument formal (iteration)
Iteration scope for names of parameters in a function declaration: the parameter list.32. Name: Argument formal constructor (iteration)
Iteration scope for names of parameters in a constructor declaration: the parameter list.33. Name: Argument formal lambda (iteration)
Iteration scope for names of parameters in an anonymous function: the parameter list.34. Name: Argument formal method (iteration)
Iteration scope for names of parameters in a method declaration: the parameter list.Named function
1. Named function
A named function declaration2. Named function: Method
A method declaration3. 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: Class
A class/struct declaration4. Statement: Constant
A constant declaration5. Statement: Do while
A do-while loop6. Statement: Enum
An enum declaration7. Statement: Field class
A field declaration in a class/struct8. Statement: Field interface
A field declaration in an interface9. Statement: Foreach
A for-each loop10. Statement: Function
A named function declaration11. Statement: Function call
A function call statement12. Statement: If
An if/elif/else statement13. Statement: Import
An import statement14. Statement: Interface
An interface declaration15. Statement: Method
A method declaration16. Statement: Method interface
A method declaration in an interface17. Statement: Namespace
A namespace declaration18. Statement: Package
A package declaration19. Statement: Return
A return statement20. Statement: Switch
A switch statement21. Statement: Throw
A throw statement22. Statement: Try
A try/catch/finally statement23. Statement: Type alias
A type alias declaration24. Statement: Update
An update statement, eg ++/--25. Statement: Variable destructuring
A variable declaration using a destructuring pattern, egconst { x, y } = point26. Statement: Variable initialized
An initialized variable declaration27. Statement: Variable uninitialized
An uninitialized variable declaration28. Statement: While
A while loop29. Statement (iteration block)
Iteration scope for statements: statement blocks (body of functions/if-statements/for-loops/etc).30. Statement (iteration class)
Iteration scope for statements: class bodies.31. Statement (iteration document)
Iteration scope for statements: the entire document including leading and trailing empty lines.32. Statement (iteration interface)
Iteration scope for statements: interface bodies.Type
1. Type: Alias
A type alias declaration2. Type: Argument catch
Type of a parameter in a catch clause3. Type: Argument formal
Type of a parameter in a function declaration4. Type: Argument formal constructor
Type of a parameter in a constructor declaration5. Type: Argument formal lambda
Type of a parameter in an anonymous function6. Type: Argument formal method
Type of a parameter in a method declaration7. Type: Class
A class/struct declaration8. Type: Constant
Type of a constant declaration9. Type: Enum
An enum declaration10. Type: Field class
Type of a field declaration in a class/struct11. Type: Field interface
Type of a field declaration in an interface12. Type: Foreach
Type of a variable in a for-each loop13. Type: Interface
An interface declaration14. Type: Return
Type of a return value in a function declaration15. Type: Return method
Type of a return value in a method declaration16. Type: Type argument
Type argument to a generic / parametrized type17. Type: Variable initialized
Type of an initialized variable declaration18. Type: Variable uninitialized
Type of an uninitialized variable declaration19. Type (iteration block)
Iteration scope for types: statement blocks (body of functions/if-statements/for-loops/etc).20. Type (iteration class)
Iteration scope for types: class bodies.21. Type (iteration document)
Iteration scope for types: the entire document including leading and trailing empty lines.22. Type (iteration interface)
Iteration scope for types: interface bodies.23. Type: Argument formal (iteration)
Iteration scope for types of parameters in a function declaration: the parameter list.24. Type: Argument formal constructor (iteration)
Iteration scope for types of parameters in a constructor declaration: the parameter list.25. Type: Argument formal lambda (iteration)
Iteration scope for types of parameters in an anonymous function: the parameter list.26. Type: Argument formal method (iteration)
Iteration scope for types of parameters in a method declaration: the parameter list.27. Type: Type argument (iteration)
Iteration scope for type arguments to a generic / parametrized type: the type argument list.Value
1. Value: Argument actual
Value of a (keyword) argument in a function call2. Value: Argument formal
Default value of a parameter in a function declaration3. Value: Argument formal constructor
Default value of a parameter in a constructor declaration4. Value: Argument formal method
Default value of a parameter in a method declaration5. Value: Assignment
Value (RHS) of an assignment statement6. Value: Assignment compound
Value (RHS) of a compound assignment statement, eg +=/-=7. Value: Constant
Value (RHS) of a constant declaration8. Value: Field class
Value (RHS) of a field declaration in a class/struct9. Value: Field interface
Value (RHS) of a field declaration in an interface10. Value: Foreach
Iterable in a for-each loop11. Value: Return
Return value of a function12. Value: Return lambda
Implicit return value of an anonymous function13. Value: Switch
Value / subject of a switch statement14. Value: Throw
Value of a throw statement15. Value: Type alias
Type expression (RHS) of a type alias declaration16. Value: Variable
Value (RHS) of a variable declaration17. Value: Variable destructuring
Value (RHS) of a variable declaration using a destructuring pattern18. Value (iteration block)
Iteration scope for values: statement blocks (body of functions/if-statements/for-loops/etc).19. Value (iteration class)
Iteration scope for values: class bodies.20. Value (iteration document)
Iteration scope for values: the entire document including leading and trailing empty lines.21. Value: Argument actual (iteration)
Iteration scope for values of (keyword) arguments in a function call: the argument list.22. Value: Argument formal (iteration)
Iteration scope for default values of parameters in a function declaration: the parameter list.23. Value: Argument formal constructor (iteration)
Iteration scope for default values of parameters in a constructor declaration: the parameter list.24. Value: Argument formal method (iteration)
Iteration scope for default values of parameters in a method declaration: the parameter list.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.