nomsu/nomsu.2.peg

153 lines
5.7 KiB
Plaintext
Raw Normal View History

-- Nomsu version 2
file (FileChunks):
2018-07-12 21:24:08 -07:00
{:curr_indent: ' '* :}
("#!" (!"nomsu" [^%nl])* "nomsu" %ws+ "-V" %ws* {:version: [0-9.]+ :} [^%nl]*)?
comment? blank_lines?
(chunk (nl_nodent section_division nl_nodent chunk)*)?
blank_lines?
%ws* (!! .+ -> "Parse error" !!)?
nodent: =curr_indent !(" ")
2018-07-12 21:24:08 -07:00
indent: =curr_indent " "
blank_lines: %nl ((nodent comment / %ws*) %nl)*
eol: %ws* eol_comment? (!. / &%nl)
2018-07-12 21:24:08 -07:00
nl_nodent: blank_lines nodent
nl_indent: blank_lines {:curr_indent: indent :} (comment nl_nodent)?
comment:
"#" (({} {~ [^%nl]* (%nl+ (indent -> '') [^%nl]*)* ~} %userdata) => add_comment)
eol_comment:
"#" (({} {[^%nl]*} %userdata) => add_comment)
section_division: ("~")^+3 eol
2018-06-18 15:44:29 -07:00
inline_block (Block):
"(" %ws* inline_block %ws* ")"
/ ":" %ws* ((inline_statement (%ws* ";" %ws* inline_statement)*) / !(eol nl_indent))
chunk (Block):
statement (nl_nodent statement)*
indented_block (Block):
":" eol nl_indent statement (nl_nodent statement)* (%nl (%ws* %nl)* nodent comment)*
2017-12-30 14:31:07 -08:00
statement: (action / expression) (eol / (!! [^%nl]+ -> "Unexpected character while parsing line" !!))
inline_statement: (inline_action / inline_expression)
2018-04-06 16:45:51 -07:00
noindex_inline_expression:
2018-01-11 01:09:26 -08:00
number / variable / inline_text / inline_list / inline_dict / inline_nomsu
/ ( "("
%ws* (inline_action / inline_expression) %ws*
(%ws* ',' %ws* (inline_action / inline_expression) %ws*)*
2018-05-03 16:30:55 -07:00
(")"
/ (!! eol -> 'Line ended without finding a closing )-parenthesis' !!)
/ (!! [^%nl]+ -> 'Unexpected character while parsing subexpression' !!)
2018-05-03 16:30:55 -07:00
)
)
inline_expression: index_chain / noindex_inline_expression
indented_expression:
indented_text / indented_nomsu / indented_list / indented_dict / ({|
"(..)" nl_indent
(action / expression) (nl_nodent comment)*
(eol / (!! [^%nl]+ -> "Unexpected character while parsing indented expression" !!))
|} -> unpack)
expression:
inline_expression / indented_expression
2017-12-30 14:31:07 -08:00
inline_nomsu (EscapedNomsu): "\" inline_expression
2018-05-26 13:09:20 -07:00
indented_nomsu (EscapedNomsu):
"\" (noindex_inline_expression / indented_expression)
2018-05-26 13:09:20 -07:00
index_chain (IndexChain):
noindex_inline_expression ("." (text_word / noindex_inline_expression))+
2018-05-26 13:09:20 -07:00
-- Actions need either at least 1 word, or at least 2 tokens
inline_action (Action):
!section_division
( (inline_arg (%ws* (inline_arg / word))+)
/ (word (%ws* (inline_arg / word))*))
(%ws* inline_block)?
inline_arg: inline_expression / inline_block
action (Action):
!section_division
( (arg ((nl_nodent "..")? %ws* (arg / word))+)
/ (word ((nl_nodent "..")? %ws* (arg / word))*))
arg: expression / inline_block / indented_block
2017-12-30 14:31:07 -08:00
2018-07-12 21:24:08 -07:00
word: !number { %operator_char+ / %ident_char+ }
2017-12-30 14:31:07 -08:00
text_word (Text): word
2018-01-11 01:09:26 -08:00
inline_text (Text):
!('".."' eol)
'"'
({~ (('\"' -> '"') / ('\\' -> '\') / %escaped_char / [^%nl\"])+ ~}
/ inline_text_interpolation)*
('"'
/ (!! eol -> 'Line ended before finding a closing double quotation mark' !!)
2018-07-12 21:24:08 -07:00
/ (!! [^%nl]+ -> 'Unexpected character while parsing Text' !!))
inline_text_interpolation:
"\" (
variable / inline_list / inline_dict / inline_text
2018-05-03 16:30:55 -07:00
/ ("("
%ws* (inline_action / inline_expression) %ws*
(%ws* ',' %ws* (inline_action / inline_expression) %ws*)*
2018-05-03 16:30:55 -07:00
(")"
/ (!! eol -> 'Line ended without finding a closing )-parenthesis' !!)
2018-07-12 21:24:08 -07:00
/ (!! [^%nl]+ -> 'Unexpected character while parsing Text interpolation' !!)))
)
indented_text (Text):
'".."' eol %nl {%nl*} {:curr_indent: indent :}
(indented_plain_text / text_interpolation / {~ %nl+ (=curr_indent -> "") ~})*
2018-07-12 21:24:08 -07:00
(!! [^%nl]+ -> "Unexpected character while parsing Text" !!)?
indented_plain_text (Text):
{~ (("\\" -> "\") / (("\" blank_lines =curr_indent "..") -> "") / (!text_interpolation "\") / [^%nl\]+)+
(%nl+ (=curr_indent -> ""))* ~}
text_interpolation:
2018-07-12 21:24:08 -07:00
inline_text_interpolation / ("\" indented_expression blank_lines =curr_indent "..")
2017-12-30 14:31:07 -08:00
number (Number): (("-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)))-> tonumber)
2017-12-30 14:31:07 -08:00
-- Variables can be nameless (i.e. just %) and can only contain identifier chars.
-- This ensures you don't get weird parsings of `%x+%y` or `%'s thing`.
variable (Var): "%" {%ident_char*}
2017-12-30 14:31:07 -08:00
inline_list (List):
!('[..]')
2018-05-30 13:07:08 -07:00
"[" %ws*
(inline_list_item (%ws* ',' %ws* inline_list_item)* (%ws* ',')?)? %ws*
2018-05-30 13:07:08 -07:00
("]" / (","? (
(!! eol -> "Line ended before finding a closing ]-bracket" !!)
/(!! [^%nl]+ -> "Unexpected character while parsing List" !!)
2018-05-30 13:07:08 -07:00
)))
2017-12-30 14:31:07 -08:00
indented_list (List):
"[..]" eol nl_indent
list_line (nl_nodent list_line)* (nl_nodent comment)*
2018-07-12 21:24:08 -07:00
(","? (!! [^%nl]+ -> "Unexpected character while parsing List" !!))?
2017-12-30 14:31:07 -08:00
list_line:
(inline_list_item %ws* "," %ws*)+ eol
/ (inline_list_item %ws* "," %ws*)* (action / expression) eol
inline_list_item: inline_action / inline_expression
2017-12-30 14:31:07 -08:00
inline_dict (Dict):
!('{..}')
2018-05-30 13:07:08 -07:00
"{" %ws*
(inline_dict_entry (%ws* ',' %ws* inline_dict_entry)*)? %ws*
2018-05-30 13:07:08 -07:00
("}" / (","? (
(!! eol -> "Line ended before finding a closing }-brace" !!)
/ (!! [^%nl]* -> "Unexpected character while parsing Dictionary" !!)
2018-05-30 13:07:08 -07:00
)))
indented_dict (Dict):
"{..}" eol nl_indent
dict_line (nl_nodent dict_line)* (nl_nodent comment)*
2018-07-12 21:24:08 -07:00
(","? (!! [^%nl]+ -> "Unexpected character while parsing Dictionary" !!))?
dict_line:
(inline_dict_entry %ws* "," %ws*)+ eol
/ (inline_dict_entry %ws* "," %ws*)* dict_entry eol
dict_entry(DictEntry):
dict_key (%ws* ":" %ws* (action / expression))?
inline_dict_entry(DictEntry):
dict_key (%ws* ":" %ws* (inline_action / inline_expression)?)?
2018-04-11 20:05:12 -07:00
dict_key:
text_word / inline_expression