private void ParseShow() { Match(TokenType.Show); Match(TokenType.OpenParenthesis); object parameters = ParseExpression(); Match(TokenType.CloseParenthesis); Match(TokenType.EOL); _compileCommands.AddLast(new [] { "$show", parameters }); }