Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for itemContinue (0.26 sec)

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

    	// Keywords appear after all the rest.
    	itemKeyword  // used only to delimit the keywords
    	itemBlock    // block keyword
    	itemBreak    // break keyword
    	itemContinue // continue keyword
    	itemDot      // the cursor, spelled '.'
    	itemDefine   // define keyword
    	itemElse     // else keyword
    	itemEnd      // end keyword
    	itemIf       // if keyword
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  2. src/text/template/parse/lex_test.go

    	itemRightParen:   ")",
    	itemSpace:        "space",
    	itemString:       "string",
    	itemVariable:     "variable",
    
    	// keywords
    	itemDot:      ".",
    	itemBlock:    "block",
    	itemBreak:    "break",
    	itemContinue: "continue",
    	itemDefine:   "define",
    	itemElse:     "else",
    	itemIf:       "if",
    	itemEnd:      "end",
    	itemNil:      "nil",
    	itemRange:    "range",
    	itemTemplate: "template",
    	itemWith:     "with",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  3. src/text/template/parse/parse.go

    func (t *Tree) action() (n Node) {
    	switch token := t.nextNonSpace(); token.typ {
    	case itemBlock:
    		return t.blockControl()
    	case itemBreak:
    		return t.breakControl(token.pos, token.line)
    	case itemContinue:
    		return t.continueControl(token.pos, token.line)
    	case itemElse:
    		return t.elseControl()
    	case itemEnd:
    		return t.endControl()
    	case itemIf:
    		return t.ifControl()
    	case itemRange:
    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