setVar method
Implementation
void setVar(String name, dynamic value) {
final i = findIdent(name);
if (i >= 0) {
_identList[i].value = value;
} else {
_identList.add(IdentRecord(
name: name.toUpperCase(),
kind: IdentKind.constant,
value: value,
));
}
}