Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for _Colon (0.12 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    			}
    
    			// x[i:...
    			// For better error message, don't simply use p.want(_Colon) here (go.dev/issue/47704).
    			if !p.got(_Colon) {
    				p.syntaxError("expected comma, : or ]")
    				p.advance(_Comma, _Colon, _Rbrack)
    			}
    			p.xnest++
    			t := new(SliceExpr)
    			t.pos = pos
    			t.X = x
    			t.Index[0] = i
    			if p.tok != _Colon && p.tok != _Rbrack {
    				// x[i:j...
    				t.Index[1] = p.expr()
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/tokens.go

    	_Arrow    // <-
    	_Star     // *
    
    	// delimiters
    	_Lparen    // (
    	_Lbrack    // [
    	_Lbrace    // {
    	_Rparen    // )
    	_Rbrack    // ]
    	_Rbrace    // }
    	_Comma     // ,
    	_Semi      // ;
    	_Colon     // :
    	_Dot       // .
    	_DotDotDot // ...
    
    	// keywords
    	_Break       // break
    	_Case        // case
    	_Chan        // chan
    	_Const       // const
    	_Continue    // continue
    	_Default     // default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/printer.go

    	case *SliceExpr:
    		p.print(n.X, _Lbrack)
    		if i := n.Index[0]; i != nil {
    			p.printNode(i)
    		}
    		p.print(_Colon)
    		if j := n.Index[1]; j != nil {
    			p.printNode(j)
    		}
    		if k := n.Index[2]; k != nil {
    			p.print(_Colon, k)
    		}
    		p.print(_Rbrack)
    
    	case *AssertExpr:
    		p.print(n.X, _Dot, _Lparen, n.Type, _Rparen)
    
    	case *TypeSwitchGuard:
    		if n.Lhs != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/scanner_test.go

    	// delimiters
    	{_Lparen, "(", 0, 0},
    	{_Lbrack, "[", 0, 0},
    	{_Lbrace, "{", 0, 0},
    	{_Rparen, ")", 0, 0},
    	{_Rbrack, "]", 0, 0},
    	{_Rbrace, "}", 0, 0},
    	{_Comma, ",", 0, 0},
    	{_Semi, ";", 0, 0},
    	{_Colon, ":", 0, 0},
    	{_Dot, ".", 0, 0},
    	{_DotDotDot, "...", 0, 0},
    
    	// keywords
    	{_Break, "break", 0, 0},
    	{_Case, "case", 0, 0},
    	{_Chan, "chan", 0, 0},
    	{_Const, "const", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  5. src/go/printer/comment.go

    		return true
    	}
    
    	// "//[a-z0-9]+:[a-z0-9]"
    	// (The // has been removed.)
    	colon := strings.Index(c, ":")
    	if colon <= 0 || colon+1 >= len(c) {
    		return false
    	}
    	for i := 0; i <= colon+1; i++ {
    		if i == colon {
    			continue
    		}
    		b := c[i]
    		if !('a' <= b && b <= 'z' || '0' <= b && b <= '9') {
    			return false
    		}
    	}
    	return true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 07:35:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  6. src/net/nss.go

    		line = trimSpace(removeComment(line))
    		if len(line) == 0 {
    			continue
    		}
    		colon := bytealg.IndexByteString(line, ':')
    		if colon == -1 {
    			conf.err = errors.New("no colon on line")
    			return conf
    		}
    		db := trimSpace(line[:colon])
    		srcs := line[colon+1:]
    		for {
    			srcs = trimSpace(srcs)
    			if len(srcs) == 0 {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:15:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammar.kt

        }
    
        val singleAnnotation by debug {
            annotationMarker * optional(annotationUseSiteTarget) * unescapedAnnotation
        }
    
        val multiAnnotation by debug {
            annotationMarker * optional(annotationUseSiteTarget) * listOfUnescapedAnnotations
        }
    
        val parameter by debug {
            simpleIdentifier * token(COLON) * type
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue18092.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func _() {
    	var ch chan bool
    	select {
    	default:
    	case <-ch { // GCCGO_ERROR "expected colon"
    	}           // GC_ERROR "expected :"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 01 22:37:04 UTC 2022
    - 320 bytes
    - Viewed (0)
  9. src/os/user/listgroups_unix.go

    		//	tcpdump:x:72:
    		listIdx := bytes.LastIndexByte(line, ':')
    		if listIdx == -1 || listIdx == len(line)-1 {
    			// No commas, or empty group list.
    			continue
    		}
    		if bytes.Count(line[:listIdx], colon) != 2 {
    			// Incorrect number of colons.
    			continue
    		}
    		list := line[listIdx+1:]
    		// Check the list for user without splitting or copying.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser_test.go

    		{"//line\n", valid, filename, 2, 1},        // missing colon
    		{"//line foo\n", valid, filename, 2, 1},    // missing colon
    		{"  //line foo:\n", valid, filename, 2, 1}, // not a line start
    		{"//  line foo:\n", valid, filename, 2, 1}, // space between // and line
    
    		// invalid //line directives with one colon
    		{"//line :\n", "invalid line number: ", filename, 1, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top