Parse unary operators ++/--.
commita3a22b46f6e6a9bf91d998e414233915b5aefdcc
authorJoshua Phillips <jp.sittingduck@gmail.com>
Fri, 19 Dec 2008 22:08:04 +0000 (19 22:08 +0000)
committerJoshua Phillips <jp.sittingduck@gmail.com>
Fri, 19 Dec 2008 22:08:04 +0000 (19 22:08 +0000)
tree129835d3caf67d4bce89422416351bfc23c20259
parentc9d6652713d590e30b1021e8b2777fe94dda89d7
Parse unary operators ++/--.

Added TOK_POSTINC and TOK_POSTDEC. Although they're the same tokens as
TOK_INC and TOK_DEC, it's much easier just to treat them as different
tokens.
parse.c
tokens.inc