Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeFuncName (0.14 sec)

  1. src/cmd/compile/internal/types2/object.go

    	return new(Signature)
    }
    
    // FullName returns the package- or receiver-type-qualified name of
    // function or method obj.
    func (obj *Func) FullName() string {
    	var buf bytes.Buffer
    	writeFuncName(&buf, obj, nil)
    	return buf.String()
    }
    
    // Scope returns the scope of the function's body block.
    // The result is nil for imported or instantiated functions and methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. src/go/types/object.go

    	return new(Signature)
    }
    
    // FullName returns the package- or receiver-type-qualified name of
    // function or method obj.
    func (obj *Func) FullName() string {
    	var buf bytes.Buffer
    	writeFuncName(&buf, obj, nil)
    	return buf.String()
    }
    
    // Scope returns the scope of the function's body block.
    // The result is nil for imported or instantiated functions and methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top