[Scummvm-git-logs] scummvm master -> 3e8d669598182aa5429a6896bd9da75d0077b0a4
rvanlaar
roland at rolandvanlaar.nl
Tue Aug 3 11:13:49 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
3e8d669598 DIRECTOR: LINGO test improvement
Commit: 3e8d669598182aa5429a6896bd9da75d0077b0a4
https://github.com/scummvm/scummvm/commit/3e8d669598182aa5429a6896bd9da75d0077b0a4
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2021-08-03T13:02:18+02:00
Commit Message:
DIRECTOR: LINGO test improvement
Commented out a hard to parse type of lingo that right now doesn't work.
The get `property of field 0 + 1` to work would mean:
- allow expressions to appear after "of" in addition to stuff like "sprite $expr" and
- "field $simple_expr" is a valid expression which conflicts with "field $expr" if you try to add that
Changed paths:
engines/director/lingo/tests/the.lingo
diff --git a/engines/director/lingo/tests/the.lingo b/engines/director/lingo/tests/the.lingo
index 17c661843b..25d4e6e14e 100644
--- a/engines/director/lingo/tests/the.lingo
+++ b/engines/director/lingo/tests/the.lingo
@@ -57,7 +57,10 @@ put the sqrt of 9
put 5 into field the number of cast "MasterList"
set the text of field 1 = "Hello"
-set the text of field 0 + 1 = "Hello"
+
+-- The next statement is valid lingo, however it's hard to parse.
+-- We have no indication that this one off type of code is used.
+-- set the text of field 0 + 1 = "Hello"
set gMarkerName = the length of h + 2
More information about the Scummvm-git-logs
mailing list