reset method
Reset the interpreter with the given source code.
Implementation
void reset({String source = ""}) {
this.source = source;
parser = null;
vm = null;
}
Reset the interpreter with the given source code.
void reset({String source = ""}) {
this.source = source;
parser = null;
vm = null;
}