We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59c338d commit 82fcee2Copy full SHA for 82fcee2
rt/src/base/LVal.mts
@@ -23,6 +23,8 @@ export class LVal implements RawValue {
23
__troupeType : Ty.TroupeType;
24
25
constructor(v:any, l:Level, tlev:Level = null, posInfo:string = null) {
26
+ // TODO (2025-12-05): If `v` is another `LVal` do a copy of that object or
27
+ // throw an error
28
this.val = v;
29
this.lev = l;
30
this.tlev = tlev == null ? l : tlev;
0 commit comments