diff options
author | Eugene Sandulenko | 2016-06-21 11:21:42 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-03 23:40:36 +0200 |
commit | fc144c716c057da05713120c8464f7114093e98e (patch) | |
tree | 47a1f3a5cebafeb724f2f3bb71c38f14b5428230 /engines/director | |
parent | 6983f3f68b00481905b8a0a53cd367da153a9da9 (diff) | |
download | scummvm-rg350-fc144c716c057da05713120c8464f7114093e98e.tar.gz scummvm-rg350-fc144c716c057da05713120c8464f7114093e98e.tar.bz2 scummvm-rg350-fc144c716c057da05713120c8464f7114093e98e.zip |
DIRECTOR: Lingo: Documented 'repeat' control commands
Diffstat (limited to 'engines/director')
-rw-r--r-- | engines/director/lingo/lingo-gr.y | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/engines/director/lingo/lingo-gr.y b/engines/director/lingo/lingo-gr.y index 1ab88ee9ab..582ff5309f 100644 --- a/engines/director/lingo/lingo-gr.y +++ b/engines/director/lingo/lingo-gr.y @@ -185,6 +185,19 @@ gotomovie: tOF tMOVIE STRING { $$ = $3; } | tTO tMOVIE STRING { $$ = $3; } ; +// repeat while (expression = TRUE) +// statements +// end repeat +// +// repeat with index = start to end +// statements +// end repeat +// +// repeat with index = high down to low +// statements +// end repeat +// + // macro // // Special Note The macro keyword is retained in Director 3.0 to maintain compatibility |