quick and dirty pure lua webassembly interpreter
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 18 lines 297 B view raw
1local frame = {} 2 3frame.StackFrame = { 4 funcIndex = 0, 5 pc = 0, -- program counter 6} 7 8function frame.StackFrame:new(funcIndex) 9 local f = { 10 locals = {}, 11 labelStack = {}, 12 } 13 setmetatable(f, {__index = self}) 14 f.funcIndex = funcIndex 15 return f 16end 17 18return frame