symtab.mx raw

   1  package runtime
   2  
   3  type Frames struct {
   4  	//
   5  }
   6  
   7  type Frame struct {
   8  	PC uintptr
   9  
  10  	Func *Func
  11  
  12  	Function string
  13  
  14  	File string
  15  	Line int
  16  
  17  	Entry uintptr
  18  }
  19  
  20  func CallersFrames(callers []uintptr) *Frames {
  21  	return nil
  22  }
  23  
  24  func (ci *Frames) Next() (frame Frame, more bool) {
  25  	return Frame{}, false
  26  }
  27