ITADN

Optional chaining not working with `roInvalid`

#761Openlvcabral 创建于 2025-12-02
bugBrightScriptbrs-nodebrs-worker
L
lvcabralcommented
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 条评论