MCPcopy Index your code
hub / github.com/Shopify/go-lua / isLua

Method isLua

stack.go:143–143  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

141func (ci *callInfo) clearCallStatus(flag callStatus) { ci.callStatus &^= flag }
142func (ci *callInfo) isCallStatus(flag callStatus) bool { return ci.callStatus&flag != 0 }
143func (ci *callInfo) isLua() bool { return ci.luaCallInfo != nil }
144
145func (ci *callInfo) stackIndex(slot int) int { return ci.top - len(ci.frame) + slot }
146func (ci *callInfo) base() int { return ci.top - len(ci.frame) }

Callers 10

runtimeErrorMethod · 0.80
typeErrorMethod · 0.80
SetDebugHookFunction · 0.80
InfoFunction · 0.80
CallWithContinuationMethod · 0.80
callHookMethod · 0.80
reallocStackMethod · 0.80
callTagMethodMethod · 0.80
callTagMethodVMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected