Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	rbrace := p.expect(token.RBRACE)
    
    	return &ast.BlockStmt{lbrace, list, rbrace}
    }
    
    // ----------------------------------------------------------------------------
    // Expressions
    
    func (p *parser) parseFuncTypeOrLit() ast.Expr {
    	if p.trace {
    		defer un(trace(p, "FuncTypeOrLit"))
    	}
    
    	typ, scope := p.parseFuncType()
    	if p.tok != token.LBRACE {
    		// function type only
    		return typ
    	}
    
    	p.exprLev++
    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.BlockStmt{Lbrace: lbrace, List: list, Rbrace: rbrace}
    }
    
    // ----------------------------------------------------------------------------
    // Expressions
    
    func (p *parser) parseFuncTypeOrLit() ast.Expr {
    	if p.trace {
    		defer un(trace(p, "FuncTypeOrLit"))
    	}
    
    	typ := p.parseFuncType()
    	if p.tok != token.LBRACE {
    		// function type only
    		return typ
    	}
    
    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