Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for editActionNode (0.1 sec)

  1. src/html/template/escape.go

    	}
    	// On exiting an attribute, we discard all state information
    	// except the state and element.
    	return context{state: stateTag, element: element}, i
    }
    
    // editActionNode records a change to an action pipeline for later commit.
    func (e *escaper) editActionNode(n *parse.ActionNode, cmds []string) {
    	if _, ok := e.actionNodeEdits[n]; ok {
    		panic(fmt.Sprintf("node %s shared between templates", n))
    	}
    	e.actionNodeEdits[n] = cmds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top