Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for bug8a (0.03 sec)

  1. src/html/template/exec_test.go

    	// Legal parse but illegal execution: non-function should have no arguments.
    	{"bug7a", "{{3 2}}", "", tVal, false},
    	{"bug7b", "{{$x := 1}}{{$x 2}}", "", tVal, false},
    	{"bug7c", "{{$x := 1}}{{3 | $x}}", "", tVal, false},
    	// Pipelined arg was not being type-checked.
    	{"bug8a", "{{3|oneArg}}", "", tVal, false},
    	{"bug8b", "{{4|dddArg 3}}", "", tVal, false},
    	// A bug was introduced that broke map lookups for lower-case names.
    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

    	// Legal parse but illegal execution: non-function should have no arguments.
    	{"bug7a", "{{3 2}}", "", tVal, false},
    	{"bug7b", "{{$x := 1}}{{$x 2}}", "", tVal, false},
    	{"bug7c", "{{$x := 1}}{{3 | $x}}", "", tVal, false},
    	// Pipelined arg was not being type-checked.
    	{"bug8a", "{{3|oneArg}}", "", tVal, false},
    	{"bug8b", "{{4|dddArg 3}}", "", tVal, false},
    	// A bug was introduced that broke map lookups for lower-case names.
    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

    	{"continue in range else", "{{range .}}{{else}}{{continue}}{{end}}", hasError, ""},
    	// 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, ""},
    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