Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for lexField (0.07 sec)

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

    			case word == "true", word == "false":
    				return l.emit(itemBool)
    			default:
    				return l.emit(itemIdentifier)
    			}
    		}
    	}
    }
    
    // lexField scans a field: .Alphanumeric.
    // The . has been scanned.
    func lexField(l *lexer) stateFn {
    	return lexFieldOrVariable(l, itemField)
    }
    
    // lexVariable scans a Variable: $Alphanumeric.
    // The $ has been scanned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
Back to top