Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for go116code (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/types.go

    	var data [3]int
    	// By coincidence all of these fields are ints, which simplifies things.
    	v := reflect.ValueOf(err)
    	for i, name := range []string{"go116code", "go116start", "go116end"} {
    		f := v.FieldByName(name)
    		if !f.IsValid() {
    			return 0, 0, 0, false
    		}
    		data[i] = int(f.Int())
    	}
    	return ErrorCode(data[0]), token.Pos(data[1]), token.Pos(data[2]), true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/internal/types/errors/codes_test.go

    				value := int(constant.Val(obj.(*Const).Val()).(int64))
    				f(codename, value, spec)
    			}
    		}
    	}
    }
    
    func readCode(err Error) int {
    	v := reflect.ValueOf(err)
    	return int(v.FieldByName("go116code").Int())
    }
    
    func checkExample(t *testing.T, example string) error {
    	t.Helper()
    	fset := token.NewFileSet()
    	if !strings.HasPrefix(example, "package") {
    		example = "package p\n\n" + example
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:41:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. src/go/types/errors.go

    		msg = "\t" + msg
    	}
    
    	span := spanOf(posn)
    	e := Error{
    		Fset:       check.fset,
    		Pos:        span.pos,
    		Msg:        stripAnnotations(msg),
    		Soft:       soft,
    		go116code:  code,
    		go116start: span.start,
    		go116end:   span.end,
    	}
    
    	if check.errpos != nil {
    		// If we have an internal error and the errpos override is set, use it to
    		// augment our error positioning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top