Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for withControl (0.16 sec)

  1. src/text/template/parse/parse.go

    	case itemEnd:
    		return t.endControl()
    	case itemIf:
    		return t.ifControl()
    	case itemRange:
    		return t.rangeControl()
    	case itemTemplate:
    		return t.templateControl()
    	case itemWith:
    		return t.withControl()
    	}
    	t.backup()
    	token := t.peek()
    	// Do not pop variables; they persist until "end".
    	return t.newAction(token.pos, token.line, t.pipeline("command", itemRightDelim))
    }
    
    // Break:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top