C
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
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 method empty
An empty list of arguments in a method call. Insertion delimiter should be empty.3. Argument list: Actual method multi line
A multi-line list of arguments in a method call. Insertion delimiter should include a newline.4. Argument list: Actual method single line
A single-line list of arguments in a method call5. Argument list: Actual multi line
A multi-line list of arguments in a function call. Insertion delimiter should include a newline.6. Argument list: Actual single line
A single-line list of arguments in a function call7. Argument list: Formal empty
An empty list of parameters in a function declaration. Insertion delimiter should be empty.8. Argument list: Formal multi line
A multi-line list of parameters in a function declaration. Insertion delimiter should include a newline.9. Argument list: Formal single line
A single-line list of parameters in a function declarationArgument or parameter
1. Argument: Actual method multi line
A multi-line argument in a method call. Insertion delimiter should include a newline.2. Argument: Actual method single line
A single-line argument in a method call3. Argument: Actual multi line
A multi-line argument in a function call. Insertion delimiter should include a newline.4. Argument: Actual single line
A single-line argument in a function call5. Argument: Formal multi line
A multi-line parameter in a function declaration. Insertion delimiter should include a newline.6. Argument: Formal single line
A single-line parameter in a function declaration7. Argument: Actual (iteration)
Iteration scope for arguments in a function call: the argument list. The domain should be the entire function call.8. Argument: Actual method (iteration)
Iteration scope for arguments in a method call: the argument list. The domain should be the entire method call.9. Argument: Formal (iteration)
Iteration scope for parameters in a function declaration: the parameter list. The domain should be the entire function.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: Ternary
A branch in a ternary expression6. 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: Ternary (iteration)
Iteration scope for ternary expression branches: the ternary expression.Class
1. Class
A class/struct declaration2. 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: For
A condition in a for loop3. Condition: If
A condition in an if statement4. Condition: Switch case
A condition in a switch statement5. Condition: Ternary
A condition in a ternary expression6. Condition: While
A condition in a while loop7. 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: 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: Method
The function being called in a method call, including parent objects.If statement
1. If statement
An if statementInterior
1. Interior: Class
The body of a class/struct declaration2. Interior: Do while
The body of a do-while loop3. Interior: Enum
The body of an enum declaration4. Interior: For
The body of a for loop5. Interior: Function
The body of a function declaration6. Interior: If
The body of an if/elif/else branch7. Interior: Switch
The body of a switch statement8. Interior: Switch case
The body of a case/default branch in a switch statement9. Interior: While
The body of a while loopList
1. List
A list/arrayName
1. Name: Argument formal
Name of a parameter in a function declaration2. Name: Assignment
Name (LHS) of an assignment statement3. Name: Assignment compound
Name (LHS) of a compound assignment statement, eg +=/-=4. Name: Class
Name of a class/struct declaration5. Name: Constant
Name (LHS) of a constant declaration6. Name: Enum
Name of an enum declaration7. Name: Field class
Name (LHS) of a field declaration in a class/struct8. Name: Field enum
Name (LHS) of a field declaration in an enum9. Name: Function
Name of a function declaration10. Name: Type alias
Name (LHS) of a type alias declaration11. Name: Variable initialized
Name (LHS) of an initialized variable declaration12. Name: Variable uninitialized
Name (LHS) of an uninitialized variable declaration13. Name (iteration block)
Iteration scope for names: statement blocks (body of functions/if-statements/for-loops/etc).14. Name (iteration class)
Iteration scope for names: class bodies.15. Name (iteration document)
Iteration scope for names: the entire document including leading and trailing empty lines.16. Name (iteration enum)
Iteration scope for names: enum bodies.17. Name: Argument formal (iteration)
Iteration scope for names of parameters in a function declaration: the parameter list.Named function
1. Named function
A named function declaration2. 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: Break
A break statement4. Statement: Class
A class/struct declaration5. Statement: Constant
A constant declaration6. Statement: Continue
A continue statement7. Statement: Do while
A do-while loop8. Statement: Enum
An enum declaration9. Statement: Field class
A field declaration in a class/struct10. Statement: For
A for loop11. Statement: Function
A named function declaration12. Statement: Function call
A function call statement13. Statement: If
An if/elif/else statement14. Statement: Import
An import statement15. Statement: Return
A return statement16. Statement: Switch
A switch statement17. Statement: Type alias
A type alias declaration18. Statement: Update
An update statement, eg ++/--19. Statement: Variable initialized
An initialized variable declaration20. Statement: Variable uninitialized
An uninitialized variable declaration21. Statement: While
A while loop22. Statement (iteration block)
Iteration scope for statements: statement blocks (body of functions/if-statements/for-loops/etc).23. Statement (iteration class)
Iteration scope for statements: class bodies.24. 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 parameter in a function declaration3. Type: Cast
A type cast4. Type: Class
A class/struct declaration5. Type: Constant
Type of a constant declaration6. Type: Enum
An enum declaration7. Type: Field class
Type of a field declaration in a class/struct8. Type: Return
Type of a return value in a function declaration9. Type: Variable initialized
Type of an initialized variable declaration10. Type: Variable uninitialized
Type of an uninitialized variable declaration11. Type (iteration block)
Iteration scope for types: statement blocks (body of functions/if-statements/for-loops/etc).12. Type (iteration class)
Iteration scope for types: class bodies.13. Type (iteration document)
Iteration scope for types: the entire document including leading and trailing empty lines.14. Type: Argument formal (iteration)
Iteration scope for types of parameters in a function declaration: the parameter list.Value
1. Value: Assignment
Value (RHS) of an assignment statement2. Value: Assignment compound
Value (RHS) of a compound assignment statement, eg +=/-=3. Value: Constant
Value (RHS) of a constant declaration4. Value: Field enum
Value (RHS) of a field declaration in an enum5. Value: Return
Return value of a function6. Value: Switch
Value / subject of a switch statement7. Value: Type alias
Type expression (RHS) of a type alias declaration8. Value: Variable
Value (RHS) of a variable declaration9. Value (iteration block)
Iteration scope for values: statement blocks (body of functions/if-statements/for-loops/etc).10. Value (iteration class)
Iteration scope for values: class bodies.11. Value (iteration document)
Iteration scope for values: the entire document including leading and trailing empty lines.12. Value (iteration enum)
Iteration scope for values: enum bodies.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.