Closed michaelficarra closed 7 years ago
var a; delete a;
The operand to delete in the above Script is marked as a read of the variable declared by var. I would consider a reference "read" if it was going to have GetValue called on it. Which this doesn't.
delete
var
GetValue
Fixed by #48.
The operand to
delete
in the above Script is marked as a read of the variable declared byvar
. I would consider a reference "read" if it was going to haveGetValue
called on it. Which this doesn't.