Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for atComma (0.26 sec)

  1. src/go/parser/parser.go

    				// TODO(rfindley) should resolve all identifiers in x.
    				list := []ast.Expr{x}
    				if p.atComma("type argument list", token.RBRACK) {
    					p.exprLev++
    					p.next()
    					for p.tok != token.RBRACK && p.tok != token.EOF {
    						list = append(list, p.parseType())
    						if !p.atComma("type argument list", token.RBRACK) {
    							break
    						}
    						p.next()
    					}
    					p.exprLev--
    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