github.com/hirochachacha/plua@v0.0.0-20170217012138-c82f520cc725/object/debug_info.go (about)

     1  package object
     2  
     3  type DebugInfo struct {
     4  	Name            string
     5  	NameWhat        string
     6  	What            string
     7  	Source          string
     8  	CurrentLine     int
     9  	LineDefined     int
    10  	LastLineDefined int
    11  	NUpvalues       int
    12  	NParams         int
    13  	IsVararg        bool
    14  	IsTailCall      bool
    15  	ShortSource     string
    16  	Lines           Table
    17  	Func            Value       // go function or closure
    18  	CallInfo        interface{} // implementation detail
    19  }