Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseCommClause (0.18 sec)

  1. src/go/printer/testdata/parser.go

    	if exprSwitch {
    		return &ast.SwitchStmt{pos, s1, p.makeExpr(s2), body}
    	}
    	// type switch
    	// TODO(gri): do all the checks!
    	return &ast.TypeSwitchStmt{pos, s1, s2, body}
    }
    
    func (p *parser) parseCommClause() *ast.CommClause {
    	if p.trace {
    		defer un(trace(p, "CommClause"))
    	}
    
    	p.openScope()
    	pos := p.pos
    	var comm ast.Stmt
    	if p.tok == token.CASE {
    		p.next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    		return &ast.TypeSwitchStmt{Switch: pos, Init: s1, Assign: s2, Body: body}
    	}
    
    	return &ast.SwitchStmt{Switch: pos, Init: s1, Tag: p.makeExpr(s2, "switch expression"), Body: body}
    }
    
    func (p *parser) parseCommClause() *ast.CommClause {
    	if p.trace {
    		defer un(trace(p, "CommClause"))
    	}
    
    	pos := p.pos
    	var comm ast.Stmt
    	if p.tok == token.CASE {
    		p.next()
    		lhs := p.parseList(false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top