(term string)
| 47 | } |
| 48 | |
| 49 | func newTokenSearch(term string) token { |
| 50 | return token{ |
| 51 | kind: tokenKindSearch, |
| 52 | term: term, |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | // tokenize parse and break a input into tokens ready to be |
| 57 | // interpreted later by a parser to get the semantic. |
no outgoing calls