本文整理汇总了Golang中debug/dwarf.Reader类的典型用法代码示例。如果您正苦于以下问题:Golang Reader类的具体用法?Golang Reader怎么用?Golang Reader使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Reader类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: readNextEntry
//============================================================================
// readNextEntry : Read the next entry.
//----------------------------------------------------------------------------
func readNextEntry(theReader *dwarf.Reader) *dwarf.Entry {
// Read the entry
theEntry, theErr := theReader.Next()
if theErr != nil {
fmt.Printf("ERROR: %v\n", theErr.String())
theEntry = nil
}
return (theEntry)
}
示例2: processChildren
//============================================================================
// processChildren : Process an entry's children.
//----------------------------------------------------------------------------
func processChildren(theReader *dwarf.Reader, depth int, canSkip bool) {
// Process the children
if canSkip {
theReader.SkipChildren()
} else {
for {
theChild := readNextEntry(theReader)
if theChild == nil || theChild.Tag == 0 {
break
}
processEntry(theReader, depth, theChild)
}
}
}