MemberExpressionPartProps
Members
Section titled “Members”args | optionalChildren[] | boolean Arguments to construct a call expression. |
id | optionalstring | number The identifier for attribute access (obj.attr). Use this for Python attribute references. |
key | optionalChildren Single key for subscription access (obj[key] or obj[0]). Use this for single subscription access. |
keys | optionalChildren[] Multiple keys for tuple subscription access (obj[a, b] -> obj[(a, b)]). Use this when you need tuple key access. |
refkey | optionalRefkey A refkey for a symbol whose name becomes the identifier. |
slice | optional{
start?: Children;
stop?: Children;
step?: Children;
} Slice notation for subscription access (obj[start:stop:step]). Use this for Python slice syntax. |
symbol | optionalMemberDeclaration context interface A symbol whose name becomes the identifier. |