Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for writeIdentList (0.1 sec)

  1. src/go/types/exprstring.go

    }
    
    func writeFieldList(buf *bytes.Buffer, list []*ast.Field, sep string, iface bool) {
    	for i, f := range list {
    		if i > 0 {
    			buf.WriteString(sep)
    		}
    
    		// field list names
    		writeIdentList(buf, f.Names)
    
    		// types of interface methods consist of signatures only
    		if sig, _ := f.Type.(*ast.FuncType); sig != nil && iface {
    			writeSigExpr(buf, sig)
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top