Revert "one more bit to pass -- futzing with the if/else chains"

This reverts commit 066ee52615.
This commit is contained in:
Jeremy Ashkenas
2010-02-13 00:11:14 -05:00
parent 066ee52615
commit 094c2682bd
7 changed files with 27 additions and 36 deletions

View File

@@ -117,7 +117,7 @@
this.tag(1, 'PROPERTY_ACCESS');
}
}
tag === 'IF' && this.tag() === 'ELSE' ? this.tag(1, 'ELSIF') : this.token(tag, id);
tag === 'ELSE' && this.tag() === 'IF' ? this.tag(1, 'ELSIF') : this.token(tag, id);
this.i += id.length;
return true;
};