2018-12-14 17:49:36 -08:00
|
|
|
-- Nomsu version 5
|
2018-12-18 19:30:01 -08:00
|
|
|
file <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{:curr_indent: ' '* :}
|
|
|
|
(((methodcall / action / expression / inline_block / indented_block) eol !.)
|
|
|
|
/ file_chunks / empty_block)
|
|
|
|
{:curr_indent: %nil :}
|
|
|
|
!.
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
shebang <- "#!" (!"nomsu" [^%nl])* "nomsu" ws+ "-V" ws* [0-9.]+ [^%nl]* (%nl / !.)
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
eof <- !.
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
file_chunks (FileChunks) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{:shebang: shebang :}?
|
|
|
|
(top_block (nl_nodent section_division top_block)*)
|
|
|
|
blank_lines?
|
2019-01-23 15:40:07 -08:00
|
|
|
unexpected_indent? unexpected_chunk?
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
top_block (Block) <-
|
2019-01-18 20:40:18 -08:00
|
|
|
((blank_lines nodent) / (comment nl_nodent))? statement (nl_nodent statement)*
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
empty_block (Block) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
comment? blank_lines?
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
nodent <- (unexpected_indent [^%nl]* / =curr_indent)
|
|
|
|
indent <- {~ =curr_indent (ws / (%tab -> ' '))+ ~}
|
|
|
|
blank_lines <- %nl ((nodent comment / ws*) %nl)*
|
|
|
|
eol <- ws* (!. / &%nl)
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
nl_nodent <- blank_lines nodent
|
|
|
|
nl_indent <- blank_lines tab_error? {:curr_indent: indent :} (comment nl_nodent)*
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
comment (Comment) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
"#" {~ [^%nl]* (%nl+ (indent -> '') [^%nl]*)* (%nl &%nl)* ~}
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
unexpected_code <- ws* _unexpected_code
|
|
|
|
_unexpected_code (Error) <-
|
2019-01-23 15:40:07 -08:00
|
|
|
{:error: {~ [^%nl]+ -> "Couldn't parse this code." ~} :}
|
2018-12-18 19:30:01 -08:00
|
|
|
unexpected_chunk (Error) <-
|
2019-01-23 15:40:07 -08:00
|
|
|
{:error: {~ .+ -> "Couldn't parse this chunk of code." ~} :}
|
2018-12-18 19:30:01 -08:00
|
|
|
unexpected_indent (Error) <-
|
2019-01-23 15:40:07 -08:00
|
|
|
{:error: {~ (=curr_indent ws+) -> "This indentation is messed up." ~} :}
|
|
|
|
{:hint: {~ '' -> 'This line should either have the same indentation as the line above it, or exactly 4 spaces more.' ~} :}
|
2018-12-18 19:30:01 -08:00
|
|
|
missing_paren_err (Error) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{:error: {~ eol -> 'Line ended without finding a closing )-parenthesis' ~} :}
|
|
|
|
{:hint: {~ '' -> 'Put a ")" here' ~} :}
|
2018-12-18 19:30:01 -08:00
|
|
|
missing_quote_err (Error) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{:error: {~ eol -> "Line ended without finding a closing quotation mark." ~} :}
|
|
|
|
{:hint: {~ "" -> "Put a quotation mark here." ~} :}
|
2018-12-18 19:30:01 -08:00
|
|
|
missing_indented_quote_err (Error) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{:error: {~ eol -> "This text doesn't have a closing quotation mark." ~} :}
|
|
|
|
{:hint: {~ "" -> "Put a quotation mark here on its own line." ~} :}
|
2018-12-18 19:30:01 -08:00
|
|
|
missing_bracket_error (Error) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{:error: {~ eol -> "Line ended before finding a closing ]-bracket" ~} :}
|
|
|
|
{:hint: {~ '' -> 'Put a "]" here' ~} :}
|
2018-12-18 19:30:01 -08:00
|
|
|
missing_brace_error (Error) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{:error: {~ eol -> "Line ended before finding a closing }-brace" ~} :}
|
|
|
|
{:hint: {~ '' -> 'Put a "}" here' ~} :}
|
2018-12-18 19:30:01 -08:00
|
|
|
tab_error (Error) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
&(=curr_indent %tab)
|
|
|
|
{:error: {~ '' -> 'Tabs are not allowed for indentation.' ~} :}
|
|
|
|
{:hint: {~ '' -> 'Use spaces instead of tabs.' ~} :}
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
section_division <- ("~")^+3 eol
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_block <-
|
2018-12-14 17:49:36 -08:00
|
|
|
"(" ws* inline_block ws* (eof / ")") / raw_inline_block
|
2018-12-18 19:30:01 -08:00
|
|
|
raw_inline_block (Block) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
(!"::") ":" ws* ((inline_statement (ws* ";" ws* inline_statement)*) / !(eol nl_indent))
|
2018-12-18 19:30:01 -08:00
|
|
|
indented_block (Block) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
":" eol nl_indent statement (nl_nodent statement)*
|
|
|
|
(%nl (ws* %nl)* nodent (comment / eol / unexpected_code))*
|
|
|
|
{:curr_indent: %nil :}
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
statement <-
|
2018-12-14 17:49:36 -08:00
|
|
|
(methodcall / action / expression) (eol / unexpected_code)
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_statement <- (inline_methodcall / inline_action / inline_expression)
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
noindex_inline_expression <-
|
2018-12-14 17:49:36 -08:00
|
|
|
number / variable / inline_text / inline_list / inline_dict / inline_nomsu
|
|
|
|
/ ( "("
|
|
|
|
ws* (inline_methodcall / inline_action / inline_expression) ws*
|
|
|
|
(")" / eof / missing_paren_err / unexpected_code)
|
|
|
|
)
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_expression <- index_chain / noindex_inline_expression
|
|
|
|
indented_expression <-
|
2018-12-14 17:49:36 -08:00
|
|
|
indented_text / indented_nomsu / indented_list / indented_dict / ({|
|
|
|
|
"(..)" eol nl_indent
|
|
|
|
(methodcall / action / expression) (eol / unexpected_code)
|
|
|
|
(%nl (ws* %nl)* nodent (comment / eol / unexpected_code))*
|
|
|
|
{:curr_indent: %nil :}
|
|
|
|
|} -> unpack)
|
2018-12-18 19:30:01 -08:00
|
|
|
expression <-
|
2018-12-14 17:49:36 -08:00
|
|
|
inline_expression / indented_expression
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_nomsu (EscapedNomsu) <- "\" (inline_expression / inline_block)
|
|
|
|
indented_nomsu (EscapedNomsu) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
"\" (noindex_inline_expression / inline_block / indented_expression / indented_block)
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
index_chain (IndexChain) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
noindex_inline_expression
|
|
|
|
("." (hex_integer / integer / text_word / noindex_inline_expression))+
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
index_chain_before_method (IndexChain) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
noindex_inline_expression
|
|
|
|
("." (hex_integer / integer / text_word / noindex_inline_expression) &".")+
|
|
|
|
|
|
|
|
-- Actions need 1 argument and either another argument or a word.
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_action (Action) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
!section_division
|
|
|
|
( (word (ws* (inline_arg / word))*)
|
|
|
|
/(inline_arg (ws* (inline_arg / word))+))
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_arg <- inline_expression / inline_block
|
|
|
|
inline_methodcall (MethodCall) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
(index_chain / noindex_inline_expression / "(" inline_block ")")
|
2018-12-14 19:23:26 -08:00
|
|
|
"|" inline_action (ws* ";" ws* inline_action)*
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
action (Action) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
!section_division
|
|
|
|
( (word ((linesplit / ws*) (arg / word))*)
|
|
|
|
/(arg ((linesplit / ws*) (arg / word))+))
|
2018-12-18 19:30:01 -08:00
|
|
|
linesplit <- (ws* "\")? eol nl_nodent ".." ws*
|
|
|
|
arg <- expression / inline_block / indented_block
|
|
|
|
methodcall (MethodCall) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
(index_chain / noindex_inline_expression / indented_expression / "(" inline_block ")" / indented_block)
|
2018-12-14 19:23:26 -08:00
|
|
|
linesplit? "|"
|
|
|
|
((ws* inline_action ws* ";")* ws* action
|
|
|
|
/ eol nl_indent
|
|
|
|
(action eol) (nl_nodent action eol)*
|
|
|
|
(%nl (ws* %nl)* nodent (comment / eol / unexpected_code))*)
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
word <- !number { operator_char+ / ident_char+ }
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
text_word (Text) <- word
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_text (Text) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
!(indented_text)
|
|
|
|
'"' _inline_text* ('"' / eof / missing_quote_err / unexpected_code)
|
2018-12-18 19:30:01 -08:00
|
|
|
_inline_text <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{~ (('\"' -> '"') / ('\\' -> '\') / escaped_char / text_char+)+ ~}
|
|
|
|
/ inline_text_interpolation / illegal_char
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_text_interpolation <-
|
2018-12-14 17:49:36 -08:00
|
|
|
"\" (
|
|
|
|
variable / inline_list / inline_dict
|
|
|
|
/ ("("
|
|
|
|
ws* ((inline_methodcall / inline_action / inline_expression) ws*)?
|
|
|
|
(")" / eof / missing_paren_err / unexpected_code))
|
|
|
|
)
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
text_char <- %utf8_char / !["\] %print / %tab
|
|
|
|
illegal_char (Error) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{:error: {~ (!(%nl / %tab / %print) .) -> "Illegal unprintable character here (it may not be visible, but it's there)" ~} :}
|
|
|
|
{:hint: {~ '' -> "This sort of thing can happen when copying and pasting code. Try deleting and retyping the code." ~} :}
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
terminal_quote <- '"' !([^%nl] / (%nl (ws* eol)?)+ =curr_indent [^%nl])
|
|
|
|
nonterminal_quote <- !terminal_quote '"'
|
|
|
|
indented_text (Text) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
'"' %nl {%nl*} {:curr_indent: indent :}
|
|
|
|
(indented_plain_text / text_interpolation / illegal_char / blank_text_lines)*
|
|
|
|
(terminal_quote eol / eof / missing_indented_quote_err)
|
|
|
|
{:curr_indent: %nil :}
|
|
|
|
-- Tracking text-lines-within-indented-text as separate objects allows for better debugging line info
|
2018-12-18 19:30:01 -08:00
|
|
|
indented_plain_text (Text) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{~
|
|
|
|
((("\" blank_lines =curr_indent "..") -> "") / ('\\' -> '\')
|
|
|
|
/ (!text_interpolation ((!("\n") escaped_char) / '\'))
|
|
|
|
/ (nonterminal_quote / text_char)+)+
|
|
|
|
blank_text_lines?
|
|
|
|
~}
|
2018-12-18 19:30:01 -08:00
|
|
|
blank_text_lines <-
|
2018-12-14 17:49:36 -08:00
|
|
|
{~ (%nl ((ws* -> '') eol / (=curr_indent -> '') &[^%nl]))+ ~}
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
text_interpolation <-
|
2018-12-14 17:49:36 -08:00
|
|
|
("\" indented_expression (blank_lines =curr_indent "..")?) / inline_text_interpolation
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
number <-
|
2018-12-14 17:49:36 -08:00
|
|
|
hex_integer / real_number / integer
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
integer (Number) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
(("-"? [0-9]+)-> tonumber)
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
hex_integer (Number) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
(("-"? "0x" [0-9a-fA-F]+)-> tonumber)
|
|
|
|
{:hex: '' -> 'yes' :}
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
real_number (Number) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
(("-"? ([0-9]+ "." [0-9]+) / ("." [0-9]+))-> tonumber)
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
variable (Var) <- "$" ({ident_char+} / "(" {(ws+ / operator_char+ / ident_char+)*} ")" / {''})
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_list (List) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
!('[..]')
|
|
|
|
"[" ws*
|
|
|
|
(inline_list_item (ws* ',' ws* inline_list_item)* (ws* ',')?)? ws*
|
|
|
|
("]" / eof / (","? (missing_bracket_error / unexpected_code)))
|
2018-12-18 19:30:01 -08:00
|
|
|
indented_list (List) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
"[..]" eol nl_indent
|
|
|
|
list_line (nl_nodent list_line)*
|
|
|
|
(%nl (ws* %nl)* nodent (comment / eol / unexpected_code))*
|
|
|
|
(","? unexpected_code)?
|
2018-12-18 19:30:01 -08:00
|
|
|
list_line <-
|
2018-12-14 17:49:36 -08:00
|
|
|
(inline_list_item ws* "," ws*)+ eol
|
|
|
|
/ (inline_list_item ws* "," ws*)* (methodcall / action / expression / inline_block / indented_block) eol
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_list_item <- inline_methodcall / inline_action / inline_expression / inline_block
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_dict (Dict) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
!('{..}')
|
|
|
|
"{" ws*
|
|
|
|
(inline_dict_entry (ws* ',' ws* inline_dict_entry)*)? ws*
|
|
|
|
("}" / eof / (","? (missing_brace_error / unexpected_code)))
|
2018-12-18 19:30:01 -08:00
|
|
|
indented_dict (Dict) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
"{..}" eol nl_indent
|
|
|
|
dict_line (nl_nodent dict_line)*
|
|
|
|
(%nl (ws* %nl)* nodent (comment / eol / unexpected_code))*
|
|
|
|
(","? unexpected_code)?
|
2018-12-18 19:30:01 -08:00
|
|
|
dict_line <-
|
2018-12-14 17:49:36 -08:00
|
|
|
(inline_dict_entry ws* "," ws*)+ eol
|
|
|
|
/ (inline_dict_entry ws* "," ws*)* dict_entry eol
|
2018-12-18 19:30:01 -08:00
|
|
|
_dict_entry(DictEntry) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
dict_key (ws* ":" ws* (methodcall / action / expression))?
|
2018-12-18 19:30:01 -08:00
|
|
|
dict_entry <-
|
2018-12-14 17:49:36 -08:00
|
|
|
_dict_entry / inline_block / indented_block
|
2018-12-18 19:30:01 -08:00
|
|
|
_inline_dict_entry(DictEntry) <-
|
2018-12-14 17:49:36 -08:00
|
|
|
dict_key (ws* ":" ws* (inline_methodcall / inline_action / inline_expression)?)?
|
2018-12-18 19:30:01 -08:00
|
|
|
inline_dict_entry <-
|
2018-12-14 17:49:36 -08:00
|
|
|
_inline_dict_entry / inline_block
|
2018-12-18 19:30:01 -08:00
|
|
|
dict_key <-
|
2018-12-14 17:49:36 -08:00
|
|
|
text_word / inline_expression
|
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
operator_char <- [#'`~@^&*+=|<>?/%!-]
|
|
|
|
ident_char <- [a-zA-Z0-9_] / %utf8_char
|
|
|
|
ws <- " "
|
2018-12-14 17:49:36 -08:00
|
|
|
|
2018-12-18 19:30:01 -08:00
|
|
|
escaped_char <-
|
2018-12-14 17:49:36 -08:00
|
|
|
("\"->'') (
|
|
|
|
(([xX]->'') ((({[0-9a-fA-F]^2} %number_16) -> tonumber) -> tochar))
|
|
|
|
/ ((([0-9] [0-9]^-2) -> tonumber) -> tochar)
|
|
|
|
/ ("a"->ascii_7) / ("b"->ascii_8) / ("t"->ascii_9) / ("n"->ascii_10)
|
|
|
|
/ ("v"->ascii_11) / ("f"->ascii_12) / ("r"->ascii_13)
|
|
|
|
)
|