logoPlayer-lexique.galgas 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. lexique logoPlayer_lexique {
  2. # Identifiers and keywords
  3. @string tokenString
  4. style keywordsStyle -> "Keywords"
  5. $identifier$ ! tokenString error message "an identifier"
  6. #--- This is the keyword list
  7. list keyWordList style keywordsStyle error message "the '%K' keyword" {
  8. "PROGRAM",
  9. "ROUTIN",
  10. "BEGIN",
  11. "END",
  12. "FORWARD",
  13. "ROTATE",
  14. "PEN",
  15. "UP",
  16. "DOWN",
  17. "CALL"
  18. }
  19. rule 'a'->'z' | 'A'->'Z' {
  20. repeat
  21. enterCharacterIntoString (!?tokenString !*)
  22. while 'a'->'z' | 'A'->'Z' | '_' | '0'->'9' :
  23. end
  24. send search tokenString in keyWordList default $identifier$
  25. }
  26. # Literal decimal integers
  27. style integerStyle -> "Integer Constants"
  28. @uint uint32value
  29. $integer$ !uint32value style integerStyle error message "a 32-bit unsigned decimal number"
  30. message decimalNumberTooLarge : "decimal number too large"
  31. message internalError : "internal error"
  32. rule '0'->'9' {
  33. enterCharacterIntoString (!?tokenString !*)
  34. repeat
  35. while '0'->'9' :
  36. enterCharacterIntoString (!?tokenString !*)
  37. while '_' :
  38. end
  39. convertDecimalStringIntoUInt (!tokenString !?uint32value error decimalNumberTooLarge, internalError)
  40. send $integer$
  41. }
  42. # Literal character strings
  43. style stringStyle -> "String Constants"
  44. $"string"$ ! tokenString style stringStyle %nonAtomicSelection error message "a character string constant \"...\""
  45. message incorrectStringEnd : "string does not end with '\"'"
  46. rule '"' {
  47. repeat
  48. while ' ' | '!' | '#'-> '\uFFFD' :
  49. enterCharacterIntoString (!?tokenString !*)
  50. end
  51. select
  52. case '"' :
  53. send $"string"$
  54. default
  55. error incorrectStringEnd
  56. end
  57. }
  58. # Delimiters
  59. style delimitersStyle -> "Delimiters"
  60. list delimitorsList style delimitersStyle error message "the '%K' delimitor" {
  61. ":", ",", ";", "!", "{", "}", "->", "@", "*", "-"
  62. }
  63. rule list delimitorsList
  64. # Comments
  65. style commentStyle -> "Comments"
  66. $comment$ style commentStyle %nonAtomicSelection error message "a comment"
  67. rule '#' {
  68. repeat
  69. while '\u0001' -> '\u0009' | '\u000B' | '\u000C' | '\u000E' -> '\uFFFD' :
  70. end
  71. drop $comment$
  72. }
  73. # Separators
  74. rule '\u0001' -> ' ' {
  75. }
  76. }