You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the -Parser.aggressivePartialParsingoption flag, when doing the following:
Try "for each point in world containing item is red {visit point; pick every item is red" (note the space in "for each"). This is parsed as "foreach point in world containing item is red {visit point; pick every item is red" by the extended parsing. Accept the parse
Define "gather red" as "for each point in world containing item is red {visit point; pick every item is red"
Then the grammar inducer does not induce "gather $Color" and "gather $Property".
If defining "gather red" as "foreach point in world containing item is red {visit point; pick every item is red" (without the space in "foreach"), then "gather $Color" and "gather $Property" are induced.
The text was updated successfully, but these errors were encountered:
With the
-Parser.aggressivePartialParsing
option flag, when doing the following:Then the grammar inducer does not induce "gather $Color" and "gather $Property".
If defining "gather red" as "foreach point in world containing item is red {visit point; pick every item is red" (without the space in "foreach"), then "gather $Color" and "gather $Property" are induced.
The text was updated successfully, but these errors were encountered: