logoPlayer-syntax.galgas 832 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. syntax logoPlayer_syntax (logoPlayer_lexique) {
  2. rule <start_symbol> {
  3. # Routine definition
  4. $PROGRAM$
  5. <routines>
  6. $BEGIN$
  7. <instructions>
  8. $END$
  9. $.$
  10. }
  11. rule <routines> {
  12. repeat
  13. while
  14. <routine>
  15. end
  16. }
  17. rule <routine> {
  18. $ROUTINE$
  19. $identifier$ ?let @lstring routineId
  20. $BEGIN$
  21. <instructions>
  22. $END$
  23. }
  24. rule <instructions> {
  25. repeat
  26. while
  27. <instruction>
  28. end
  29. }
  30. rule <instruction> {
  31. select
  32. <move>
  33. or
  34. <set_pen>
  35. or
  36. <call_routine>
  37. end
  38. $;$
  39. }
  40. rule <move> {
  41. select
  42. $FORWARD$
  43. or
  44. $ROTATE$
  45. end
  46. $integer$ ?let @luint moveLen
  47. }
  48. rule <set_pen> {
  49. $PEN$
  50. select
  51. $UP$
  52. or
  53. $DOWN$
  54. end
  55. }
  56. rule <call_routine> {
  57. $CALL$
  58. $identifier$ ?*
  59. }
  60. }