Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for eatAttrName (0.85 sec)

  1. src/html/template/transition.go

    func tError(c context, s []byte) (context, int) {
    	return c, len(s)
    }
    
    // eatAttrName returns the largest j such that s[i:j] is an attribute name.
    // It returns an error if s[i:] does not look like it begins with an
    // attribute name, such as encountering a quote mark without a preceding
    // equals sign.
    func eatAttrName(s []byte, i int) (int, *Error) {
    	for j := i; j < len(s); j++ {
    		switch s[j] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top