Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for printStmtList (0.11 sec)

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

    		p.print(newline, indent)
    		p.printStmtList(c.Body, braces)
    		p.print(outdent)
    	}
    }
    
    func (p *printer) printCommClause(c *CommClause, braces bool) {
    	if c.Comm != nil {
    		p.print(_Case, blank)
    		p.print(c.Comm)
    	} else {
    		p.print(_Default)
    	}
    	p.print(_Colon)
    	if len(c.Body) > 0 {
    		p.print(newline, indent)
    		p.printStmtList(c.Body, braces)
    		p.print(outdent)
    	}
    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