MCPcopy Create free account
hub / github.com/yuin/gopher-lua / newLabelDesc

Function newLabelDesc

compile.go:150–158  ·  view source on GitHub ↗
(id int, name string, pc, line, n int)

Source from the content-addressed store, hash-verified

148}
149
150func newLabelDesc(id int, name string, pc, line, n int) *gotoLabelDesc {
151 return &gotoLabelDesc{
152 Id: id,
153 Name: name,
154 Pc: pc,
155 Line: line,
156 NumActiveLocalVars: n,
157 }
158}
159
160func (l *gotoLabelDesc) SetNumActiveLocalVars(n int) {
161 l.NumActiveLocalVars = n

Callers 2

compileLabelStmtFunction · 0.85
compileGotoStmtFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…