| InferParentWithinMethodNode |
Infers the parent to amend in `function createPerson(): Person = new { ...
|
| InferParentWithinObjectMethodNode |
Infers the parent to amend in `obj { local function createPerson(): Person = new { ...
|
| InferParentWithinPropertyNode |
Infers the parent to amend in `x = new { ...
|
| InvokeMethodDirectNode |
A non-virtual ("direct") method call.
|
| InvokeMethodLexicalNode |
A non-virtual method call whose call target is in the lexical scope of the call site.
|
| InvokeMethodVirtualNode |
A virtual method call.
|
| InvokeSuperMethodNode |
|
| ReadLocalPropertyNode |
Reads a local non-constant property that is known to exist in the lexical scope of this node.
|
| ReadPropertyNode |
|
| ReadSuperEntryNode |
An expression of the form `super[key]`.
|
| ReadSuperPropertyNode |
|
| ResolveMethodNode |
Resolves a method name in a method call with implicit receiver, for example `bar` in `x = bar()`
(but not `foo.bar()`).
|