Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for bug6c (0.22 sec)

  1. src/html/template/exec_test.go

    	{"bug5a", "{{.Err}}", "erroozle", tVal, true},
    	// Args need to be indirected and dereferenced sometimes.
    	{"bug6a", "{{vfunc .V0 .V1}}", "vfunc", tVal, true},
    	{"bug6b", "{{vfunc .V0 .V0}}", "vfunc", tVal, true},
    	{"bug6c", "{{vfunc .V1 .V0}}", "vfunc", tVal, true},
    	{"bug6d", "{{vfunc .V1 .V1}}", "vfunc", tVal, true},
    	// Legal parse but illegal execution: non-function should have no arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	{"bug5a", "{{.Err}}", "erroozle", tVal, true},
    	// Args need to be indirected and dereferenced sometimes.
    	{"bug6a", "{{vfunc .V0 .V1}}", "vfunc", tVal, true},
    	{"bug6b", "{{vfunc .V0 .V0}}", "vfunc", tVal, true},
    	{"bug6c", "{{vfunc .V1 .V0}}", "vfunc", tVal, true},
    	{"bug6d", "{{vfunc .V1 .V1}}", "vfunc", tVal, true},
    	// Legal parse but illegal execution: non-function should have no arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. src/encoding/json/encode_test.go

    	}
    }
    
    // There are no tags here, so S should not appear.
    type BugZ struct {
    	BugA
    	BugC
    	BugY // Contains a tagged S field through BugD; should not dominate.
    }
    
    func TestDuplicatedFieldDisappears(t *testing.T) {
    	v := BugZ{
    		BugA{"BugA"},
    		BugC{"BugC"},
    		BugY{
    			BugA{"nested BugA"},
    			BugD{"nested BugD"},
    		},
    	}
    	b, err := Marshal(v)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  4. src/text/template/parse/parse_test.go

    	// Other kinds of assignments and operators aren't available yet.
    	{"bug0a", "{{$x := 0}}{{$x}}", noError, "{{$x := 0}}{{$x}}"},
    	{"bug0b", "{{$x += 1}}{{$x}}", hasError, ""},
    	{"bug0c", "{{$x ! 2}}{{$x}}", hasError, ""},
    	{"bug0d", "{{$x % 3}}{{$x}}", hasError, ""},
    	// Check the parse fails for := rather than comma.
    	{"bug0e", "{{range $x := $y := 3}}{{end}}", hasError, ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top