Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for RPAREN (0.13 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    				return
    			} else if next == ')' {
    				rparen := in.lex()
    				if in.peek().isEOL() {
    					// Empty block.
    					in.lex()
    					in.file.Stmt = append(in.file.Stmt, &LineBlock{
    						Start:  start,
    						Token:  tokens,
    						LParen: LParen{Pos: tok.pos},
    						RParen: RParen{Pos: rparen.pos},
    					})
    					return
    				}
    				// '( )' in the middle of the line, not a block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/go/ast/ast.go

    		Rparen token.Pos // position of ")"
    	}
    
    	// A CallExpr node represents an expression followed by an argument list.
    	CallExpr struct {
    		Fun      Expr      // function expression
    		Lparen   token.Pos // position of "("
    		Args     []Expr    // function arguments; or nil
    		Ellipsis token.Pos // position of "..." (token.NoPos if there is no "...")
    		Rparen   token.Pos // position of ")"
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. src/go/types/generate_test.go

    						pos := n.Args[0].Pos()
    						fun := &ast.SelectorExpr{X: newIdent(pos, "posn"), Sel: newIdent(pos, "Pos")}
    						arg := &ast.CallExpr{Fun: fun, Lparen: pos, Args: nil, Ellipsis: token.NoPos, Rparen: pos}
    						n.Args[0] = arg
    						return false
    					}
    				case "addf":
    					// rewrite err.addf(pos, ...) to err.addf(posn, ...)
    					if isIdent(n.Args[0], "pos") {
    						pos := n.Args[0].Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    	case *ast.BranchStmt:
    		children = append(children,
    			tok(n.TokPos, len(n.Tok.String())))
    
    	case *ast.CallExpr:
    		children = append(children,
    			tok(n.Lparen, len("(")),
    			tok(n.Rparen, len(")")))
    		if n.Ellipsis != 0 {
    			children = append(children, tok(n.Ellipsis, len("...")))
    		}
    
    	case *ast.CaseClause:
    		if n.List == nil {
    			children = append(children,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    				if line-lastLine > 1 || !gen.Rparen.IsValid() {
    					// There was a blank line immediately preceding the deleted import,
    					// so there's no need to close the hole. The right parenthesis is
    					// invalid after AddImport to an import statement without parenthesis.
    					// Do nothing.
    				} else if line != fset.File(gen.Rparen).LineCount() {
    					// There was no blank line. Close the hole.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  6. src/go/doc/example.go

    				comments = append(comments, d.Doc)
    			}
    		}
    	}
    
    	// Synthesize import declaration.
    	importDecl := &ast.GenDecl{
    		Tok:    token.IMPORT,
    		Lparen: 1, // Need non-zero Lparen and Rparen so that printer
    		Rparen: 1, // treats this as a factored import.
    	}
    	importDecl.Specs = append(namedImports, blankImports...)
    
    	// Synthesize main function.
    	funcDecl := &ast.FuncDecl{
    		Name: ast.NewIdent("main"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. src/go/types/call.go

    		check.nonGeneric(nil, x)
    		if x.mode == invalid {
    			return conversion
    		}
    		T := x.typ
    		x.mode = invalid
    		switch n := len(call.Args); n {
    		case 0:
    			check.errorf(inNode(call, call.Rparen), WrongArgCount, "missing argument in conversion to %s", T)
    		case 1:
    			check.expr(nil, x, call.Args[0])
    			if x.mode != invalid {
    				if hasDots(call) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. src/go/printer/printer.go

    		// use that information to decide more directly.
    		needsLinebreak := false
    		if p.mode&noExtraBlank == 0 &&
    			last.Text[1] == '*' && p.lineFor(last.Pos()) == next.Line &&
    			tok != token.COMMA &&
    			(tok != token.RPAREN || p.prevOpen == token.LPAREN) &&
    			(tok != token.RBRACK || p.prevOpen == token.LBRACK) {
    			if p.containsLinebreak() && p.mode&noExtraLinebreak == 0 && p.level == 0 {
    				needsLinebreak = true
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  9. src/text/template/parse/parse_test.go

    		"{{/*}}",
    		hasError, `comment1:1: unclosed comment`},
    	{"comment2",
    		"{{/*\nhello\n}}",
    		hasError, `comment2:1: unclosed comment`},
    	{"lparen",
    		"{{.X (1 2 3}}",
    		hasError, `unclosed left paren`},
    	{"rparen",
    		"{{.X 1 2 3 ) }}",
    		hasError, "unexpected right paren"},
    	{"rparen2",
    		"{{(.X 1 2 3",
    		hasError, `unclosed action`},
    	{"space",
    		"{{`x`3}}",
    		hasError, `in operand`},
    	{"idchar",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/go/scanner/scanner.go

    			}
    		case ',':
    			tok = token.COMMA
    		case ';':
    			tok = token.SEMICOLON
    			lit = ";"
    		case '(':
    			tok = token.LPAREN
    		case ')':
    			insertSemi = true
    			tok = token.RPAREN
    		case '[':
    			tok = token.LBRACK
    		case ']':
    			insertSemi = true
    			tok = token.RBRACK
    		case '{':
    			tok = token.LBRACE
    		case '}':
    			insertSemi = true
    			tok = token.RBRACE
    		case '+':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
Back to top