We currently support 2-level variable references, with a dot . between the symbols. For example: field1.field2 as an argval, and field1.method-name as a method call.
Extend this support to allow for n-level variable references. For example: field1.field2.field3 as an argval, and field1.field2.method-name or method-arg2.field1.field4.methodB as a method call.
We currently support 2-level variable references, with a dot
.
between the symbols. For example:field1.field2
as an argval, andfield1.method-name
as a method call.Extend this support to allow for n-level variable references. For example:
field1.field2.field3
as an argval, andfield1.field2.method-name
ormethod-arg2.field1.field4.methodB
as a method call.