Better error reporting and error handling for chunks.

This commit is contained in:
Bruce Hill 2019-01-23 15:40:07 -08:00
parent 58b863fcd1
commit 9441a81011
5 changed files with 26 additions and 26 deletions

View File

@ -12,7 +12,7 @@ file_chunks (FileChunks) <-
shebang? comment? blank_lines? shebang? comment? blank_lines?
(top_block (nl_nodent section_division top_block)*) (top_block (nl_nodent section_division top_block)*)
blank_lines? blank_lines?
ws* unexpected_chunk? unexpected_indent? unexpected_chunk?
top_block (Block) <- top_block (Block) <-
((blank_lines nodent) / (comment nl_nodent))? statement (nl_nodent statement)* ((blank_lines nodent) / (comment nl_nodent))? statement (nl_nodent statement)*
@ -35,12 +35,12 @@ eol_comment (Comment) <-
unexpected_code <- ws* _unexpected_code unexpected_code <- ws* _unexpected_code
_unexpected_code (Error) <- _unexpected_code (Error) <-
{:error: {~ [^%nl]+ -> "Couldn't parse this code" ~} :} {:error: {~ [^%nl]+ -> "Couldn't parse this code." ~} :}
unexpected_chunk (Error) <- unexpected_chunk (Error) <-
{:error: {~ .+ -> "Couldn't parse this code" ~} :} {:error: {~ .+ -> "Couldn't parse this chunk of code." ~} :}
unexpected_indent (Error) <- unexpected_indent (Error) <-
{:error: {~ (=curr_indent ws+) -> "Messed up indentation" ~} :} {:error: {~ (=curr_indent ws+) -> "This indentation is messed up." ~} :}
{:hint: {~ '' -> 'Either make sure this line is aligned with the one above it, or make sure the previous line ends with something that uses indentation, like ":" or "(..)"' ~} :} {:hint: {~ '' -> 'This line should either have the same indentation as the line above it, or exactly 4 spaces more.' ~} :}
missing_paren_err (Error) <- missing_paren_err (Error) <-
{:error: {~ eol -> 'Line ended without finding a closing )-parenthesis' ~} :} {:error: {~ eol -> 'Line ended without finding a closing )-parenthesis' ~} :}
{:hint: {~ '' -> 'Put a ")" here' ~} :} {:hint: {~ '' -> 'Put a ")" here' ~} :}

View File

@ -12,7 +12,7 @@ file_chunks (FileChunks) <-
shebang? comment? blank_lines? shebang? comment? blank_lines?
(top_block (nl_nodent section_division top_block)*) (top_block (nl_nodent section_division top_block)*)
blank_lines? blank_lines?
ws* unexpected_chunk? unexpected_indent? unexpected_chunk?
top_block (Block) <- top_block (Block) <-
((blank_lines nodent) / (comment nl_nodent))? statement (nl_nodent statement)* ((blank_lines nodent) / (comment nl_nodent))? statement (nl_nodent statement)*
@ -35,12 +35,12 @@ eol_comment (Comment) <-
unexpected_code <- ws* _unexpected_code unexpected_code <- ws* _unexpected_code
_unexpected_code (Error) <- _unexpected_code (Error) <-
{:error: {~ [^%nl]+ -> "Couldn't parse this code" ~} :} {:error: {~ [^%nl]+ -> "Couldn't parse this code." ~} :}
unexpected_chunk (Error) <- unexpected_chunk (Error) <-
{:error: {~ .+ -> "Couldn't parse this code" ~} :} {:error: {~ .+ -> "Couldn't parse this chunk of code." ~} :}
unexpected_indent (Error) <- unexpected_indent (Error) <-
{:error: {~ (=curr_indent ws+) -> "Messed up indentation" ~} :} {:error: {~ (=curr_indent ws+) -> "This indentation is messed up." ~} :}
{:hint: {~ '' -> 'Either make sure this line is aligned with the one above it, or make sure the previous line ends with something that uses indentation, like ":" or "(..)"' ~} :} {:hint: {~ '' -> 'This line should either have the same indentation as the line above it, or exactly 4 spaces more.' ~} :}
missing_paren_err (Error) <- missing_paren_err (Error) <-
{:error: {~ eol -> 'Line ended without finding a closing )-parenthesis' ~} :} {:error: {~ eol -> 'Line ended without finding a closing )-parenthesis' ~} :}
{:hint: {~ '' -> 'Put a ")" here' ~} :} {:hint: {~ '' -> 'Put a ")" here' ~} :}

View File

@ -14,7 +14,7 @@ file_chunks (FileChunks) <-
{:shebang: shebang :}? {:shebang: shebang :}?
(top_block (nl_nodent section_division top_block)*) (top_block (nl_nodent section_division top_block)*)
blank_lines? blank_lines?
ws* unexpected_chunk? unexpected_indent? unexpected_chunk?
top_block (Block) <- top_block (Block) <-
((blank_lines nodent) / (comment nl_nodent))? statement (nl_nodent statement)* ((blank_lines nodent) / (comment nl_nodent))? statement (nl_nodent statement)*
@ -37,12 +37,12 @@ eol_comment (Comment) <-
unexpected_code <- ws* _unexpected_code unexpected_code <- ws* _unexpected_code
_unexpected_code (Error) <- _unexpected_code (Error) <-
{:error: {~ [^%nl]+ -> "Couldn't parse this code" ~} :} {:error: {~ [^%nl]+ -> "Couldn't parse this code." ~} :}
unexpected_chunk (Error) <- unexpected_chunk (Error) <-
{:error: {~ .+ -> "Couldn't parse this code" ~} :} {:error: {~ .+ -> "Couldn't parse this chunk of code." ~} :}
unexpected_indent (Error) <- unexpected_indent (Error) <-
{:error: {~ (=curr_indent ws+) -> "Messed up indentation" ~} :} {:error: {~ (=curr_indent ws+) -> "This indentation is messed up." ~} :}
{:hint: {~ '' -> 'Either make sure this line is aligned with the one above it, or make sure the previous line ends with something that uses indentation, like ":" or "(..)"' ~} :} {:hint: {~ '' -> 'This line should either have the same indentation as the line above it, or exactly 4 spaces more.' ~} :}
missing_paren_err (Error) <- missing_paren_err (Error) <-
{:error: {~ eol -> 'Line ended without finding a closing )-parenthesis' ~} :} {:error: {~ eol -> 'Line ended without finding a closing )-parenthesis' ~} :}
{:hint: {~ '' -> 'Put a ")" here' ~} :} {:hint: {~ '' -> 'Put a ")" here' ~} :}

View File

@ -14,7 +14,7 @@ file_chunks (FileChunks) <-
{:shebang: shebang :}? {:shebang: shebang :}?
(top_block (nl_nodent section_division top_block)*) (top_block (nl_nodent section_division top_block)*)
blank_lines? blank_lines?
ws* unexpected_chunk? unexpected_indent? unexpected_chunk?
top_block (Block) <- top_block (Block) <-
((blank_lines nodent) / (comment nl_nodent))? statement (nl_nodent statement)* ((blank_lines nodent) / (comment nl_nodent))? statement (nl_nodent statement)*
@ -35,12 +35,12 @@ comment (Comment) <-
unexpected_code <- ws* _unexpected_code unexpected_code <- ws* _unexpected_code
_unexpected_code (Error) <- _unexpected_code (Error) <-
{:error: {~ [^%nl]+ -> "Couldn't parse this code" ~} :} {:error: {~ [^%nl]+ -> "Couldn't parse this code." ~} :}
unexpected_chunk (Error) <- unexpected_chunk (Error) <-
{:error: {~ .+ -> "Couldn't parse this code" ~} :} {:error: {~ .+ -> "Couldn't parse this chunk of code." ~} :}
unexpected_indent (Error) <- unexpected_indent (Error) <-
{:error: {~ (=curr_indent ws+) -> "Messed up indentation" ~} :} {:error: {~ (=curr_indent ws+) -> "This indentation is messed up." ~} :}
{:hint: {~ '' -> 'Either make sure this line is aligned with the one above it, or make sure the previous line ends with something that uses indentation, like ":" or "(..)"' ~} :} {:hint: {~ '' -> 'This line should either have the same indentation as the line above it, or exactly 4 spaces more.' ~} :}
missing_paren_err (Error) <- missing_paren_err (Error) <-
{:error: {~ eol -> 'Line ended without finding a closing )-parenthesis' ~} :} {:error: {~ eol -> 'Line ended without finding a closing )-parenthesis' ~} :}
{:hint: {~ '' -> 'Put a ")" here' ~} :} {:hint: {~ '' -> 'Put a ")" here' ~} :}

View File

@ -12,7 +12,7 @@ file_chunks (FileChunks) <-
{:shebang: shebang :}? {:shebang: shebang :}?
(top_block (nl_nodent section_division top_block)*) (top_block (nl_nodent section_division top_block)*)
blank_lines? blank_lines?
ws* unexpected_chunk? unexpected_indent? unexpected_chunk?
section_division <- ("~")^+3 eol section_division <- ("~")^+3 eol
@ -240,14 +240,14 @@ escaped_char <-
-- Errors -- Errors
unexpected_code <- ws* _unexpected_code unexpected_code <- ws* _unexpected_code
_unexpected_code (Error) <- _unexpected_code (Error) <-
{:error: {~ [^%nl]+ -> "Couldn't parse this code" ~} :} {:error: {~ [^%nl]+ -> "Couldn't parse this code." ~} :}
unexpected_chunk (Error) <- unexpected_chunk (Error) <-
{:error: {~ .+ -> "Couldn't parse this code" ~} :} {:error: {~ .+ -> "Couldn't parse this chunk of code." ~} :}
unexpected_indent (Error) <- unexpected_indent (Error) <-
{:error: {~ (=curr_indent ws+) -> "Messed up indentation" ~} :} {:error: {~ (=curr_indent ws+) -> "This indentation is messed up." ~} :}
{:hint: {~ '' -> 'Either make sure this line is aligned with the one above it, or make sure the previous line ends with something that uses indentation, like ":" or "(..)"' ~} :} {:hint: {~ '' -> 'This line should either have the same indentation as the line above it, or exactly 4 spaces more.' ~} :}
missing_paren_err (Error) <- missing_paren_err (Error) <-
{:error: {~ eol -> 'This expression is missing a closing )-parenthesis' ~} :} {:error: {~ eol -> 'This expression is missing a closing )-parenthesis.' ~} :}
{:hint: {~ '' -> 'Put a ")" here' ~} :} {:hint: {~ '' -> 'Put a ")" here' ~} :}
missing_quote_err (Error) <- missing_quote_err (Error) <-
{:error: {~ eol -> "This text is missing a closing quotation mark." ~} :} {:error: {~ eol -> "This text is missing a closing quotation mark." ~} :}