Hi, I am encountering a strange issue with phoenix grammar.<br>
<br>
I am adding new locations:<br>
<br>
[LocationSpec]<br>
(at [location])<br>
(in [location])<br>
([location])<br>
;<br>
<br>
[location]<br>
(LOCS)<br>
<br>
LOCS<br>
(sac)<br>
(student activities)<br>
(humanities)<br>
(newell simon)<br>
(newell simon hall)<br>
(nsh)<br>
(wean)<br>
(wean hall)<br>
;<br>
<br>
<br>
<br>
Some of the locations are old - from roomline , the 3 new locations in
the example above are "sac", "humanities", and "student
activities". <br>
<br>
The only one that gets parsed is "sac", no matter the order that they appear.<br>
I checked that "SAC" occurs in all of the same files as "HUMANITIES".<br>
I have removed all pof the files that get generated before compiling. <br>
<br>
I tried another way to add it in grammar:<br>
<br>
[LocationSpec]<br>
(at [location])<br>
(in [location])<br>
([location])<br>
;<br>
<br>
[location]<br>
(sac)<br>
(student activities)<br>
(humanities)<br>
(newell simon)<br>
(newell simon hall)<br>
(nsh)<br>
(wean)<br>
(wean hall)<br>
;<br>
<br>
<br>
*********************<br>
<br>
[TestLocationSpec]<br>
(at LOCS)<br>
(in LOCS)<br>
(LOCS)<br>
LOCS<br>
(sac)<br>
(hum)<br>
(student activities)<br>
(newell simon)<br>
(newell simon hall)<br>
(nsh)<br>
(wean)<br>
(wean hall)<br>
;<br>
<br>
<br>
Actually out of your entries "NSH" does not get parsed either.<br>
Does anyone have any idea why this happens? Thank you<br>
<br>
Svetlana<br>