()
| 32 | type RuntimeError string |
| 33 | |
| 34 | func (r RuntimeError) Error() string { return "runtime error: " + string(r) } |
| 35 | |
| 36 | // A Type is a symbolic representation of a Lua VM type. |
| 37 | type Type int |
nothing calls this directly
no outgoing calls
no test coverage detected