Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for identList (0.16 sec)

  1. src/go/printer/nodes.go

    				// Very subtle: If we indented before (ws == ignore), identList
    				// won't indent again. If we didn't (ws == indent), identList will
    				// indent if the identList spans multiple lines, and it will outdent
    				// again at the end (and still ws == indent). Thus, a subsequent indent
    				// by a linebreak call after a type, or in the next multi-line identList
    				// will do the right thing.
    				p.identList(par.Names, ws == indent)
    				p.print(blank)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    	} else {
    		p.expect(token.IDENT) // use expect() error handling
    	}
    	return &ast.Ident{pos, name, nil}
    }
    
    func (p *parser) parseIdentList() (list []*ast.Ident) {
    	if p.trace {
    		defer un(trace(p, "IdentList"))
    	}
    
    	list = append(list, p.parseIdent())
    	for p.tok == token.COMMA {
    		p.next()
    		list = append(list, p.parseIdent())
    	}
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    		p.expect(token.IDENT) // use expect() error handling
    	}
    	return &ast.Ident{NamePos: pos, Name: name}
    }
    
    func (p *parser) parseIdentList() (list []*ast.Ident) {
    	if p.trace {
    		defer un(trace(p, "IdentList"))
    	}
    
    	list = append(list, p.parseIdent())
    	for p.tok == token.COMMA {
    		p.next()
    		list = append(list, p.parseIdent())
    	}
    
    	return
    }
    
    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