LangVar<T extends LangType> constructor

const LangVar<T extends LangType>(
  1. String ptrName,
  2. T type
)

Constructs a language variable with the specified pointer name and type.

Implementation

const LangVar(this.ptrName, this.type);