Optional chaining not working with `roInvalid`
bugBrightScriptbrs-nodebrs-worker
When using optional chaining with boxed `invalid` values, the interpreter is crashing, the following code should work without issues:
```brs
sub main()
m.newInvalid = box(invalid)
print m.something?.call?() 'should print invalid
print m.newInvalid?.call?() 'should print <Component: roInvalid>
end sub
```
0 条评论