File size: 184 Bytes
bee6636
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9

let reached = false
let eval = (t) => t === "location = 1" && (reached = true)

// testing to make sure this doesn't get rewritten
eval("location = 1")

if (!reached) fail();