Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for validateStructTag (0.25 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    	errTagSpace       = errors.New("key:\"value\" pairs not separated by spaces")
    )
    
    // validateStructTag parses the struct tag and returns an error if it is not
    // in the canonical format, which is a space-separated list of key:"value"
    // settings. The value may contain spaces.
    func validateStructTag(tag string) error {
    	// This code is based on the StructTag.Get code in package reflect.
    
    	n := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. src/reflect/type.go

    // the value returned by Lookup is unspecified.
    func (tag StructTag) Lookup(key string) (value string, ok bool) {
    	// When modifying this code, also update the validateStructTag code
    	// in cmd/vet/structtag.go.
    
    	for tag != "" {
    		// Skip leading space.
    		i := 0
    		for i < len(tag) && tag[i] == ' ' {
    			i++
    		}
    		tag = tag[i:]
    		if tag == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top