aboutsummaryrefslogtreecommitdiffhomepage
path: root/parse_tree.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-01-13 02:24:11 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-01-13 02:24:11 -0800
commit95f87cdd56602fe7c2746519f875741c325d2df8 (patch)
treede2756889e04deac7c62a3eefaa7c86c3f713147 /parse_tree.cpp
parent746cc4c10b40cff7d0c88eac2448864506d8098b (diff)
Support for special && and || error messages in new parser
Diffstat (limited to 'parse_tree.cpp')
-rw-r--r--parse_tree.cpp51
1 files changed, 40 insertions, 11 deletions
diff --git a/parse_tree.cpp b/parse_tree.cpp
index b55f43bb..41873bbe 100644
--- a/parse_tree.cpp
+++ b/parse_tree.cpp
@@ -1,6 +1,7 @@
#include "parse_productions.h"
#include "tokenizer.h"
#include "fallback.h"
+#include "wutil.h"
#include "proc.h"
#include <vector>
#include <algorithm>
@@ -746,8 +747,43 @@ void parse_ll_t::parse_error_unbalancing_token(parse_token_t token)
// This is a 'generic' parse error when we can't match the top of the stack element
void parse_ll_t::parse_error_failed_production(struct parse_stack_element_t &stack_elem, parse_token_t token)
{
- const wcstring expected = stack_elem.user_presentable_description();
- this->parse_error(expected.c_str(), token);
+ fatal_errored = true;
+ if (this->should_generate_error_messages)
+ {
+ bool done = false;
+
+ /* Check for || */
+ if (token.type == parse_token_type_pipe && token.source_start > 0)
+ {
+ /* Here we wanted a statement and instead got a pipe. See if this is a double pipe: foo || bar. If so, we have a special error message. */
+ const parse_node_t *prev_pipe = nodes.find_node_matching_source_location(parse_token_type_pipe, token.source_start - 1, NULL);
+ if (prev_pipe != NULL)
+ {
+ /* The pipe of the previous job abuts our current token. So we have ||. */
+ this->parse_error(token, parse_error_double_pipe, CMD_OR_ERR_MSG);
+ done = true;
+ }
+ }
+
+ /* Check for && */
+ if (! done && token.type == parse_token_type_background && token.source_start > 0)
+ {
+ /* Check to see if there was a previous token_background */
+ const parse_node_t *prev_background = nodes.find_node_matching_source_location(parse_token_type_background, token.source_start - 1, NULL);
+ if (prev_background != NULL)
+ {
+ /* We have &&. */
+ this->parse_error(token, parse_error_double_background, CMD_AND_ERR_MSG);
+ done = true;
+ }
+ }
+
+ if (! done)
+ {
+ const wcstring expected = stack_elem.user_presentable_description();
+ this->parse_error(expected.c_str(), token);
+ }
+ }
}
void parse_ll_t::report_tokenizer_error(parse_token_t token, const wchar_t *tok_error)
@@ -936,15 +972,8 @@ void parse_ll_t::accept_tokens(parse_token_t token1, parse_token_t token2)
const production_t *production = production_for_token(stack_elem.type, token1, token2, &node.production_idx, NULL /* error text */);
if (production == NULL)
{
- if (should_generate_error_messages)
- {
- parse_error_failed_production(stack_elem, token1);
- }
- else
- {
- this->parse_error(token1, parse_error_generic, NULL);
- }
- // parse_error sets fatal_errored, which ends the loop
+ parse_error_failed_production(stack_elem, token1);
+ // the above sets fatal_errored, which ends the loop
}
else
{