Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 306 for Rbrack (0.16 sec)

  1. 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)
  2. src/go/scanner/scanner.go

    		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 '+':
    			tok = s.switch3(token.ADD, token.ADD_ASSIGN, '+', token.INC)
    			if tok == token.INC {
    				insertSemi = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    	{token.DEFINE, ":=", operator},
    	{token.ELLIPSIS, "...", operator},
    
    	{token.LPAREN, "(", operator},
    	{token.LBRACK, "[", operator},
    	{token.LBRACE, "{", operator},
    	{token.COMMA, ",", operator},
    	{token.PERIOD, ".", operator},
    
    	{token.RPAREN, ")", operator},
    	{token.RBRACK, "]", operator},
    	{token.RBRACE, "}", operator},
    	{token.SEMICOLON, ";", operator},
    	{token.COLON, ":", operator},
    	{token.TILDE, "~", operator},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⪭︀":                           "\u2aad\ufe00",
    	"⤌":                           "\u290c",
    	"❲":                           "\u2772",
    	"{":                          "\u007b",
    	"[":                          "\u005b",
    	"⦋":                           "\u298b",
    	"⦏":                         "\u298f",
    	"⦍":                         "\u298d",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. src/html/entity.go

    		"late;":                            '\U00002AAD',
    		"lbarr;":                           '\U0000290C',
    		"lbbrk;":                           '\U00002772',
    		"lbrace;":                          '\U0000007B',
    		"lbrack;":                          '\U0000005B',
    		"lbrke;":                           '\U0000298B',
    		"lbrksld;":                         '\U0000298F',
    		"lbrkslu;":                         '\U0000298D',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	if trace {
    		defer p.trace("typeInstance")()
    	}
    
    	pos := p.pos()
    	p.want(_Lbrack)
    	x := new(IndexExpr)
    	x.pos = pos
    	x.X = typ
    	if p.tok == _Rbrack {
    		p.syntaxError("expected type argument list")
    		x.Index = p.badExpr()
    	} else {
    		x.Index, _ = p.typeList(true)
    	}
    	p.want(_Rbrack)
    	return x
    }
    
    // If context != "", type parameters are not permitted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Lexer.kt

    import org.jetbrains.kotlin.lexer.KtTokens.COMMENTS
    import org.jetbrains.kotlin.lexer.KtTokens.IDENTIFIER
    import org.jetbrains.kotlin.lexer.KtTokens.LBRACE
    import org.jetbrains.kotlin.lexer.KtTokens.PACKAGE_KEYWORD
    import org.jetbrains.kotlin.lexer.KtTokens.RBRACE
    import org.jetbrains.kotlin.lexer.KtTokens.WHITE_SPACE
    
    
    internal
    abstract class UnexpectedBlock(message: String) : RuntimeException(message) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreter.kt

    package org.gradle.kotlin.dsl.execution
    
    import org.gradle.kotlin.dsl.support.expectedKotlinDslPluginsVersion
    import org.jetbrains.kotlin.lexer.KtTokens.DOT
    import org.jetbrains.kotlin.lexer.KtTokens.LBRACE
    import org.jetbrains.kotlin.lexer.KtTokens.RBRACE
    
    
    internal
    sealed class PluginsBlockInterpretation {
    
        /**
         * The `plugins` block applies exactly the given list of [plugins].
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IncDecStmt.X", Field, 0},
    		{"IndexExpr", Type, 0},
    		{"IndexExpr.Index", Field, 0},
    		{"IndexExpr.Lbrack", Field, 0},
    		{"IndexExpr.Rbrack", Field, 0},
    		{"IndexExpr.X", Field, 0},
    		{"IndexListExpr", Type, 18},
    		{"IndexListExpr.Indices", Field, 18},
    		{"IndexListExpr.Lbrack", Field, 18},
    		{"IndexListExpr.Rbrack", Field, 18},
    		{"IndexListExpr.X", Field, 18},
    		{"Inspect", Func, 0},
    		{"InterfaceType", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/token_string.go

    	_ = x[_Literal-3]
    	_ = x[_Operator-4]
    	_ = x[_AssignOp-5]
    	_ = x[_IncOp-6]
    	_ = x[_Assign-7]
    	_ = x[_Define-8]
    	_ = x[_Arrow-9]
    	_ = x[_Star-10]
    	_ = x[_Lparen-11]
    	_ = x[_Lbrack-12]
    	_ = x[_Lbrace-13]
    	_ = x[_Rparen-14]
    	_ = x[_Rbrack-15]
    	_ = x[_Rbrace-16]
    	_ = x[_Comma-17]
    	_ = x[_Semi-18]
    	_ = x[_Colon-19]
    	_ = x[_Dot-20]
    	_ = x[_DotDotDot-21]
    	_ = x[_Break-22]
    	_ = x[_Case-23]
    	_ = x[_Chan-24]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 02:28:24 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top