Implement exec, exit, level, restart (without testcases for now)

This commit is contained in:
Michael Stapelberg
2010-05-10 10:12:35 +02:00
parent 6a1c34d2c5
commit 98dbe63e35
2 changed files with 51 additions and 3 deletions

View File

@ -104,6 +104,9 @@ prev { return TOK_PREV; }
split { return TOK_SPLIT; }
horizontal { return TOK_HORIZONTAL; }
vertical { return TOK_VERTICAL; }
level { return TOK_LEVEL; }
up { return TOK_UP; }
down { return TOK_DOWN; }
class { BEGIN(WANT_QSTRING); return TOK_CLASS; }
id { BEGIN(WANT_QSTRING); return TOK_ID; }