Hi, I am encountering a strange issue with phoenix grammar.<br>
<br>
I am adding new locations:<br>
<br>
[LocationSpec]<br>
&nbsp;&nbsp;&nbsp; (at [location])<br>
&nbsp;&nbsp;&nbsp; (in [location])<br>
&nbsp;&nbsp;&nbsp; ([location])<br>
;<br>
<br>
[location]<br>
&nbsp;&nbsp;&nbsp; (LOCS)<br>
<br>
LOCS<br>
&nbsp;&nbsp;&nbsp; (sac)<br>
&nbsp;&nbsp;&nbsp; (student activities)<br>
&nbsp;&nbsp;&nbsp; (humanities)<br>
&nbsp;&nbsp;&nbsp; (newell simon)<br>
&nbsp;&nbsp;&nbsp; (newell simon hall)<br>
&nbsp;&nbsp;&nbsp; (nsh)<br>
&nbsp;&nbsp;&nbsp; (wean)<br>
&nbsp;&nbsp;&nbsp; (wean hall)<br>
;<br>
<br>
<br>
<br>
Some of the locations are old - from roomline , the 3 new locations in
the example above are &quot;sac&quot;, &quot;humanities&quot;, and &quot;student
activities&quot;.&nbsp; <br>
<br>
The only one that gets parsed is &quot;sac&quot;, no matter the order that they appear.<br>
I checked that &quot;SAC&quot; occurs in all of&nbsp; the same files as &quot;HUMANITIES&quot;.<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>

&nbsp;&nbsp;&nbsp; (at [location])<br>

&nbsp;&nbsp;&nbsp; (in [location])<br>

&nbsp;&nbsp;&nbsp; ([location])<br>

;<br>

<br>

[location]<br>

&nbsp;&nbsp;&nbsp; (sac)<br>

&nbsp;&nbsp;&nbsp; (student activities)<br>

&nbsp;&nbsp;&nbsp; (humanities)<br>

&nbsp;&nbsp;&nbsp; (newell simon)<br>

&nbsp;&nbsp;&nbsp; (newell simon hall)<br>

&nbsp;&nbsp;&nbsp; (nsh)<br>

&nbsp;&nbsp;&nbsp; (wean)<br>

&nbsp;&nbsp;&nbsp; (wean hall)<br>

;<br>
<br>
<br>
*********************<br>
<br>
[TestLocationSpec]<br>
&nbsp;&nbsp;&nbsp; (at LOCS)<br>
&nbsp;&nbsp;&nbsp; (in LOCS)<br>
&nbsp;&nbsp;&nbsp; (LOCS)<br>
LOCS<br>
&nbsp;&nbsp;&nbsp; (sac)<br>
&nbsp;&nbsp;&nbsp; (hum)<br>
&nbsp;&nbsp;&nbsp; (student activities)<br>
&nbsp;&nbsp;&nbsp; (newell simon)<br>
&nbsp;&nbsp;&nbsp; (newell simon hall)<br>
&nbsp;&nbsp;&nbsp; (nsh)<br>
&nbsp;&nbsp;&nbsp; (wean)<br>
&nbsp;&nbsp;&nbsp; (wean hall)<br>
;<br>
<br>
<br>
Actually out of your entries &quot;NSH&quot; does not get parsed either.<br>
Does anyone have any idea why this happens? Thank you<br>
<br>
Svetlana<br>