@@ -11,7 +11,7 @@ $identifier$ ! tokenString error message "an identifier"
#--- This is the keyword list
list keyWordList style keywordsStyle error message "the '%K' keyword" {
"PROGRAM",
- "ROUTIN",
+ "ROUTINE",
"BEGIN",
"END",
"FORWARD",
@@ -3,8 +3,8 @@ before {
}
#--- 'when' clauses
-case . "logoPlayer"
-message "a source text file with the .logoPlayer extension"
+case . "logo"
+message "a source text file with the .logo extension"
grammar logoPlayer_grammar
?sourceFilePath:@lstring inSourceFile {
grammar logoPlayer_grammar in inSourceFile
@@ -1,9 +1,70 @@
syntax logoPlayer_syntax (logoPlayer_lexique) {
-rule <start_symbol> {
- # ADD YOUR SYNTAX INSTRUCTIONS
-}
+ rule <start_symbol> {
+ # Routine definition
+ $PROGRAM$
+ <routines>
+
+ $BEGIN$
+ <instructions>
+ $END$
+ $.$
+ }
+ rule <routines> {
+ repeat
+ while
+ <routine>
+ end
+ rule <routine> {
+ $ROUTINE$
+ $identifier$ ?*
+ rule <instructions> {
+ <instruction>
+ rule <instruction> {
+ select
+ <move>
+ or
+ <set_pen>
+ <call_routine>
+ $;$
+ rule <move> {
+ $FORWARD$
+ $ROTATE$
+ $integer$ ?*
-# ADD OTHER RULES
+ rule <set_pen> {
+ $PEN$
+ $UP$
+ $DOWN$
+ rule <call_routine> {
+ $CALL$