logoPlayer-semantics.galgas 431 B

1234567891011121314151617181920212223242526
  1. map @routineMap {
  2. insert insertKey error message "the '%K' routine has been already declared"
  3. search searchKey error message "the '%K' routine is not declared"
  4. }
  5. list @instructionList {
  6. @instruction mInstruction
  7. }
  8. abstract class @instruction {
  9. }
  10. class @penUp : @instruction {
  11. }
  12. class @penDown : @instruction {
  13. }
  14. class @forward : @instruction {
  15. @luint mLength
  16. }
  17. class @rotate : @instruction {
  18. @luint mAngle
  19. }