Class FieldReference

Reference to a field of an object.

It can be both instance reference or static reference. If it is a static reference, the base object is a string, representing the class name. Otherwise, the base object is a Value representing the object.

Use isStatic to check if the field reference is static.

Hierarchy (View Summary)

Constructors

Accessors

  • get base(): string | Value

    Get the base object of the field reference.

    Returns string | Value

    Base object or class name.

  • get code(): string

    Get the original line of code in the source file.

    All values in one node share the same code.

    Returns string

    The original

  • get id(): number

    Get the id of the vertex in the graph database this value represents.

    Returns number

  • set id(id: number): void
    Internal

    Parameters

    • id: number

    Returns void

  • get identifier(): string

    The syntax component identifier, i.e. ArkAssignStmt.

    Returns string

    The identifier.

  • get node(): CodeNode

    Get the node in the graph database this value is associated with.

    Value only represents the AST of the node in the database, use this method to get the complete node, see CodeNode | CodeNode for more information.

    FIXME: All values should be associated with CodeNode, so no type check is performed here.

    Returns CodeNode

    The complete node in the graph database this value is associated with.

  • get supported(): boolean

    Values that cannot be parsed from AST will be marked as unsupported. Usually, only InvalidValue should be marked as unsupported.

    Returns boolean

    Whether this value is supported by the current implementation.

  • get type(): Type

    By default, the value has an invalid type, see InvalidType.

    Returns Type

    The type of this value.

  • set type(type: Type): void

    Parameters

    • type: Type

    Returns void

Methods

  • Check if the field reference is static.

    Returns boolean

    true if the field reference is static, false otherwise.

  • This method is used to get the stream representation of this value. It depends on the implementation of the elements method.

    See Stream for stream operations.

    Returns Stream<Value>

    A stream of values.