NodeVar constructor

NodeVar(
  1. dynamic name,
  2. dynamic type
)

Implementation

NodeVar(name, type) {
  this.name = name;
  this.type = type;
}