mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-13 22:40:01 -04:00
8 lines
176 B
Text
8 lines
176 B
Text
|
|
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();
|