| Name | Description |
| [[Parent]] | Optional parent scope. |
| [[OpenNamespaces]] | Open namespace list. |
| [[Properties]] | The scope properties. |
| [[Imports]] | The import list. |
The import list may contain package single imports and package wildcard imports.
The with scope is created by the with statement, causing the wildcard * expression to resolve to the parenthesized object.
with (object.from.somewhere)
*.x *= 10,
*.y *= 3;
| Name | Description |
| [[Object]] | Object used in the with statement. |
| Name | Description |
| [[Class]] | Class object. |
| Name | Description |
| [[Class]] | Class object. |
| Name | Description |
| [[Interface]] | The interface. |
| Name | Description |
| [[Package]] | Package. |
Method bodies create an activation as scope.
| Name | Description |
| [[This]] | The this object. |
| [[Method]] | Method. |