Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/text/template/template.go

    func (t *Template) associate(new *Template, tree *parse.Tree) bool {
    	if new.common != t.common {
    		panic("internal error: associate not common")
    	}
    	if old := t.tmpl[new.name]; old != nil && parse.IsEmptyTree(tree.Root) && old.Tree != nil {
    		// If a template by that name exists,
    		// don't replace it with an empty template.
    		return false
    	}
    	t.tmpl[new.name] = new
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top