Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for parenthesized (0.34 sec)

  1. src/cmd/compile/internal/ssa/debug_lines_test.go

    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    )
    
    // Matches lines in genssa output that are marked "isstmt", and the parenthesized plus-prefixed line number is a submatch
    var asmLine *regexp.Regexp = regexp.MustCompile(`^\s[vb]\d+\s+\d+\s\(\+(\d+)\)`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    	// regexp functions which contains 'Submatch' in their names will be 3.
    	// Submatch 0 is the match of the entire expression, submatch 1 is
    	// the match of the first parenthesized subexpression, and so on.
    	// e.g.:
    	// result := bootstraputil.BootstrapTokenRegexp.FindStringSubmatch("abcdef.1234567890123456")
    	// result == []string{"abcdef.1234567890123456","abcdef","1234567890123456"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. test/fixedbugs/bug300.go

    	// illegal composite literals: parentheses not allowed around literal type
    	_ = (struct{}){}    // ERROR "parenthesize"
    	_ = ([42]int){}     // ERROR "parenthesize"
    	_ = ([...]int){}    // ERROR "parenthesize"
    	_ = ([]int){}       // ERROR "parenthesize"
    	_ = (map[int]int){} // ERROR "parenthesize"
    	_ = (T){}           // ERROR "parenthesize"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 697 bytes
    - Viewed (0)
  4. test/fixedbugs/bug299.go

    	// legal according to spec
    	x int
    	y (int)
    	int
    	*float64
    	// not legal according to spec
    	(complex128)  // ERROR "non-declaration|expected|parenthesize"
    	(*string)  // ERROR "non-declaration|expected|parenthesize"
    	*(bool)    // ERROR "non-declaration|expected|parenthesize"
    }
    
    // legal according to spec
    func (p T) m() {}
    
    // now legal according to spec
    func (p (T)) f() {}
    func (p *(T)) g() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 666 bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSmartcastProvider.kt

    ) : KaSmartCastProvider(), KaFirSessionComponent {
    
        private val KtExpression.isExplicitSmartCastInfoTarget: Boolean
            get() {
                // we want to handle only most top-level parenthesised expressions
                if (parent is KtParenthesizedExpression) return false
    
                // expressions like `|foo.bar()|` or `|foo?.baz()|` are ignored
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top