Interface InvokeExprJson

There is actually three types of invocation statements in ArkTS:

  • PtrInvoke
  • StaticInvoke
  • InstanceInvoke

However, we omit the distinction between these types in the AST for simplicity.

interface InvokeExprJson {
    _identifier: string;
    args: AstJson[];
    base?: AstJson;
    name: string;
    type: AstJson;
}

Hierarchy

  • AstJson
    • InvokeExprJson

Properties

_identifier: string

This is used to as a unique type identifier to deserialize the AST node.

args: AstJson[]
base?: AstJson
name: string
type: AstJson