text/template/parse.Tree.vars (field)

11 uses

	text/template/parse (current package)
		parse.go#L31: 	vars       []string // variables defined at the moment.
		parse.go#L223: 	t.vars = []string{"$"}
		parse.go#L231: 	t.vars = nil
		parse.go#L427: 			t.vars = append(t.vars, v.val)
		parse.go#L431: 			t.vars = append(t.vars, v.val)
		parse.go#L480: 	defer t.popVars(len(t.vars))
		parse.go#L740: 	t.vars = t.vars[:n]
		parse.go#L747: 	for _, varName := range t.vars {