Represents the base data frame information stored in the abstract interpretation info of an AST node.

  • type optionally defines the type of the extra information stored in the data frame info
  • domain contains the abstract data frame shape state of the node This may not be present if the data frame shape inference has not been executed yet or the program contains no data frames
interface DataFrameInfoBase {
    domain?: DataFrameStateDomain;
    type?: string;
}

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of DataFrameInfoBase

Properties

Properties

type?: string