First stab at elseif implementation

This commit is contained in:
ridiculousfish
2012-09-01 01:46:14 -07:00
parent 122791646e
commit cc1395797e
10 changed files with 287 additions and 108 deletions

View File

@@ -43,6 +43,7 @@ bool parser_keywords_is_subcommand( const wcstring &cmd )
L"while",
L"exec",
L"if",
L"elseif",
L"and",
L"or",
L"not" );
@@ -68,6 +69,7 @@ bool parser_keywords_is_reserved( const wcstring &word)
L"end",
L"case",
L"else",
L"elseif",
L"return",
L"continue",
L"break" );