devicescript icon indicating copy to clipboard operation
devicescript copied to clipboard

assignment to C-defined properties should be forbidden

Open mmoskal opened this issue 2 years ago • 0 comments

const b = new ds.Buzzer()
console.log(b.isBound)
;(b as any).isBound = true
console.log(b.isBound)

this could should throw on the assignment

mmoskal avatar Apr 06 '23 19:04 mmoskal