This commit is contained in:
Chris Wanstrath 2025-11-05 14:17:48 -08:00
parent f1cc717711
commit 33ea94a247

View File

@ -48,6 +48,10 @@ export class VM {
}
}
get(name: string) {
return this.scope.get(name)
}
set(name: string, value: any) {
this.scope.set(name, toValue(value, this))
}