Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for printFieldList (0.18 sec)

  1. src/cmd/compile/internal/syntax/printer.go

    			p.print(blank)
    		}
    		p.print(_Lbrace)
    		if len(n.FieldList) > 0 {
    			if p.linebreaks {
    				p.print(newline, indent)
    				p.printFieldList(n.FieldList, n.TagList, _Semi)
    				p.print(outdent, newline)
    			} else {
    				p.printFieldList(n.FieldList, n.TagList, _Semi)
    			}
    		}
    		p.print(_Rbrace)
    
    	case *FuncType:
    		p.print(_Func)
    		p.printSignature(n)
    
    	case *InterfaceType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top