commit 38facfca8aa664d42ad922e059ecfb07e1bf7ef8
parent fb65fca0b3c45ded10eaac0d5d0b1a83d7ab9c66
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Tue, 15 Apr 2014 17:27:43 +0200
Add comments about features not implemented
These features must be implemented later.
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/expr.c b/expr.c
@@ -336,6 +336,7 @@ primary(void)
np = constcode(yylval.sym);
next();
break;
+ /* TODO: case STRING: */
case '(':
next();
np = expr();
@@ -366,6 +367,9 @@ postfix(void)
np1 = incdec(np1, (yytoken == INC) ? OPINC : OPDEC);
next();
break;
+ /* TODO: case '.': */
+ /* TODO: case INDIR: */
+ /* TODO: case '(' */
default:
return np1;
}