You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
431 B
22 lines
431 B
8 years ago
|
package goblin
|
||
|
|
||
|
import (
|
||
|
"runtime/debug"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func ResolveStack(skip int) []string {
|
||
|
return cleanStack(debug.Stack(), skip)
|
||
|
}
|
||
|
|
||
|
func cleanStack(stack []byte, skip int) []string {
|
||
|
arrayStack := strings.Split(string(stack), "\n")
|
||
|
var finalStack []string
|
||
|
for i := skip; i < len(arrayStack); i++ {
|
||
|
if strings.Contains(arrayStack[i], ".go") {
|
||
|
finalStack = append(finalStack, arrayStack[i])
|
||
|
}
|
||
|
}
|
||
|
return finalStack
|
||
|
}
|