Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AllParents (0.15 sec)

  1. src/cmd/internal/obj/inl.go

    	}
    	tree.nodes = append(tree.nodes, call)
    	return r
    }
    
    // AllParents invokes do on each InlinedCall in the inlining call
    // stack, from outermost to innermost.
    //
    // That is, if inlIndex corresponds to f inlining g inlining h,
    // AllParents invokes do with the call for inlining g into f, and then
    // inlining h into g.
    func (tree *InlTree) AllParents(inlIndex int, do func(InlinedCall)) {
    	if inlIndex >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top