Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for Rbrace (0.35 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

                """java""",
                "Expecting token of type RBRACE, but got IDENTIFIER ('java') instead"
            )
        }
    
        @Test
        fun `unsupported syntax - version catalog alias`() {
            assertDynamicInterpretationOf(
                """alias(libs.plugins.jmh)""",
                "Expecting token of type RBRACE, but got IDENTIFIER ('alias') instead"
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

        internal
        inline fun <T> bracket(crossinline parser: Parser<T>): Parser<T> =
            token(LBRACKET) * parser * token(RBRACKET)
    
    
        internal
        inline fun <T> brace(crossinline parser: Parser<T>): Parser<T> =
            token(LBRACE) * parser * token(RBRACE)
    
    
        internal
        fun wsOrNewLine(): Parser<Unit> = {
            skipWhitespace(true)
            unitSuccess
        }
    
    
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. src/go/ast/ast.go

    func (x *CompositeLit) End() token.Pos   { return x.Rbrace + 1 }
    func (x *ParenExpr) End() token.Pos      { return x.Rparen + 1 }
    func (x *SelectorExpr) End() token.Pos   { return x.Sel.End() }
    func (x *IndexExpr) End() token.Pos      { return x.Rbrack + 1 }
    func (x *IndexListExpr) End() token.Pos  { return x.Rbrack + 1 }
    func (x *SliceExpr) End() token.Pos      { return x.Rbrack + 1 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stmt.go

    func (check *Checker) funcBody(decl *declInfo, name string, sig *Signature, body *syntax.BlockStmt, iota constant.Value) {
    	if check.conf.IgnoreFuncBodies {
    		panic("function body not ignored")
    	}
    
    	if check.conf.Trace {
    		check.trace(body.Pos(), "-- %s: %s", name, sig)
    	}
    
    	// save/restore current environment and set up function environment
    	// (and use 0 indentation at function start)
    	defer func(env environment, indent int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    		children = append(children,
    			tok(n.TokPos, len(n.Tok.String())))
    
    	case *ast.IndexExpr:
    		children = append(children,
    			tok(n.Lbrack, len("[")),
    			tok(n.Rbrack, len("]")))
    
    	case *ast.IndexListExpr:
    		children = append(children,
    			tok(n.Lbrack, len("[")),
    			tok(n.Rbrack, len("]")))
    
    	case *ast.InterfaceType:
    		children = append(children,
    			tok(n.Interface, len("interface")))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            check(blockNodes.size >= 2) // first and last nodes are the opening an¡¡d closing braces
    
            val openBrace = blockNodes.first()
            openBrace.expectKind(LBRACE)
    
            val closingBrace = blockNodes.last()
            closingBrace.expectKind(RBRACE)
    
            return blockNodes.slice(1..blockNodes.size - 2)
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/rangefunc/rewrite.go

    	}
    	syntax.Inspect(x, func(n syntax.Node) bool {
    		if n == nil || n.Pos() != nopos {
    			return false
    		}
    		n.SetPos(pos)
    		switch n := n.(type) {
    		case *syntax.BlockStmt:
    			if n.Rbrace == nopos {
    				n.Rbrace = pos
    			}
    		}
    		return true
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. src/cmd/cover/cover.go

    					clause := n.(*ast.CommClause)
    					f.addCounters(clause.Colon+1, clause.Colon+1, clause.End(), clause.Body, false)
    				}
    				return f
    			}
    		}
    		f.addCounters(n.Lbrace, n.Lbrace+1, n.Rbrace+1, n.List, true) // +1 to step past closing brace.
    	case *ast.IfStmt:
    		if n.Init != nil {
    			ast.Walk(f, n.Init)
    		}
    		ast.Walk(f, n.Cond)
    		ast.Walk(f, n.Body)
    		if n.Else == nil {
    			return nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/go/printer/printer.go

    			}
    			data = s
    			// some keywords followed by a newline imply a semicolon
    			switch x {
    			case token.BREAK, token.CONTINUE, token.FALLTHROUGH, token.RETURN,
    				token.INC, token.DEC, token.RPAREN, token.RBRACK, token.RBRACE:
    				impliedSemi = true
    			}
    			p.lastTok = x
    
    		case string:
    			// incorrect AST - print error message
    			data = x
    			isLit = true
    			impliedSemi = true
    			p.lastTok = token.STRING
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  10. src/go/doc/example.go

    	if last == nil || !outputPrefix.MatchString(last.Text()) {
    		return body, comments
    	}
    
    	// Copy body and comments, as the originals may be used elsewhere.
    	newBody := &ast.BlockStmt{
    		Lbrace: body.Lbrace,
    		List:   body.List,
    		Rbrace: last.Pos(),
    	}
    	newComments := make([]*ast.CommentGroup, len(comments)-1)
    	copy(newComments, comments[:i])
    	copy(newComments[i:], comments[i+1:])
    	return newBody, newComments
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top