scramjet / rewriter /native /tests /3-shadow-globals.js
soiz1's picture
Upload 150 files
bee6636 verified
raw
history blame contribute delete
107 Bytes
function f(location, globalThis) {
assert(location === 1)
assert(globalThis === 2)
}
f(1, 2);