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

Method readLineInfo

undump.go:134–142  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

132}
133
134func (state *loadState) readLineInfo() (lineInfo []int32, err error) {
135 var n int32
136 if n, err = state.readInt(); err != nil || n == 0 {
137 return
138 }
139 lineInfo = make([]int32, n)
140 err = state.read(lineInfo)
141 return
142}
143
144func (state *loadState) readDebug(p *prototype) (source string, lineInfo []int32, localVariables []localVariable, names []string, err error) {
145 var n int32

Callers 1

readDebugMethod · 0.95

Calls 2

readIntMethod · 0.95
readMethod · 0.95

Tested by

no test coverage detected