Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for EmptyOp (0.11 sec)

  1. test/nilcheck.go

    	structp    *Struct
    	bigstructp *BigStruct
    	emptyp     *Empty
    	empty1p    *Empty1
    )
    
    func f1() {
    	_ = *intp    // ERROR "nil check"
    	_ = *arrayp  // ERROR "nil check"
    	_ = *array0p // ERROR "nil check"
    	_ = *array0p // ERROR "nil check"
    	_ = *intp    // ERROR "nil check"
    	_ = *arrayp  // ERROR "nil check"
    	_ = *structp // ERROR "nil check"
    	_ = *emptyp  // ERROR "nil check"
    	_ = *arrayp  // ERROR "nil check"
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 18:41:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. test/nilptr3.go

    	_ = *structp // ERROR "generated nil check"
    	_ = *emptyp  // ERROR "generated nil check"
    	_ = *arrayp  // ERROR "removed nil check"
    }
    
    func f2() {
    	var (
    		intp       *int
    		arrayp     *[10]int
    		array0p    *[0]int
    		bigarrayp  *[1 << 20]int
    		structp    *Struct
    		bigstructp *BigStruct
    		emptyp     *Empty
    		empty1p    *Empty1
    	)
    
    	_ = *intp       // ERROR "generated nil check"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg regexp/syntax, const DotNL Flags
    pkg regexp/syntax, const EmptyBeginLine EmptyOp
    pkg regexp/syntax, const EmptyBeginText EmptyOp
    pkg regexp/syntax, const EmptyEndLine EmptyOp
    pkg regexp/syntax, const EmptyEndText EmptyOp
    pkg regexp/syntax, const EmptyNoWordBoundary EmptyOp
    pkg regexp/syntax, const EmptyWordBoundary EmptyOp
    pkg regexp/syntax, const ErrInternalError ErrorCode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DotNL", Const, 0},
    		{"EmptyBeginLine", Const, 0},
    		{"EmptyBeginText", Const, 0},
    		{"EmptyEndLine", Const, 0},
    		{"EmptyEndText", Const, 0},
    		{"EmptyNoWordBoundary", Const, 0},
    		{"EmptyOp", Type, 0},
    		{"EmptyOpContext", Func, 0},
    		{"EmptyWordBoundary", Const, 0},
    		{"ErrInternalError", Const, 0},
    		{"ErrInvalidCharClass", Const, 0},
    		{"ErrInvalidCharRange", Const, 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)
Back to top