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, package wildcard imports, and package recursive 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. The filter operator creates an activation specifying a [[FilterBase]] to create a wildcard * binding.
Name | Description |
[[This]] | The this object. |
[[Method]] | Method. |
[[FilterBase]] | Base object of the filter operator. |