選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. )