You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

token.go 266B

12345678910111213141516171819202122232425262728
  1. package revision
  2. // token represents a entity extracted from string parsing
  3. type token int
  4. const (
  5. eof token = iota
  6. aslash
  7. asterisk
  8. at
  9. caret
  10. cbrace
  11. colon
  12. control
  13. dot
  14. emark
  15. minus
  16. number
  17. obrace
  18. obracket
  19. qmark
  20. slash
  21. space
  22. tilde
  23. tokenError
  24. word
  25. )