nomsu/nomsu.peg

139 lines
5.5 KiB
Plaintext
Raw Normal View History

file:
shebang?
(ignored_line %nl)*
(block / action / expression)?
(%nl ignored_line)*
2018-05-03 16:30:55 -07:00
(!. / (({} (.* -> "Parse error")) => error))
2017-12-30 14:31:07 -08:00
shebang: "#!" [^%nl]* (!. / %nl)
2017-12-30 14:31:07 -08:00
2018-05-03 16:30:55 -07:00
statement: (action / expression) (eol / (({} ([^%nl]* -> "Error while parsing line")) => error))
inline_statement: inline_action / inline_expression
2017-12-30 14:31:07 -08:00
inline_block (Block):
{| inline_statement (%ws* ";" %ws* inline_statement)+ |} -> Tuple
block (Block):
{| statement (nodent (statement / (({} ([^%nl]* -> "Error while parsing block line")) => error)))+ |} -> Tuple
2017-12-30 14:31:07 -08:00
inline_nomsu (Nomsu): "\" noindex_inline_expression
indented_nomsu (Nomsu):
"\" (noindex_inline_expression / (":" %ws* (inline_block / inline_action / inline_expression) eol) / indented_expression)
2017-12-30 14:31:07 -08:00
2018-04-06 16:45:51 -07:00
index_chain (IndexChain):
{|
noindex_inline_expression ("." (text_word / noindex_inline_expression))+
|} -> Tuple
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_block / inline_action / inline_expression) %ws*
2018-05-03 16:30:55 -07:00
(")"
/ (({} ((!. / &%nl) -> 'Expected to find a ) before the end of the line')) => error)
/ (({} ([^%nl]* -> 'Error while parsing subexpression')) => error)
2018-05-03 16:30:55 -07:00
)
)
2018-04-06 16:45:51 -07:00
inline_expression:
index_chain / noindex_inline_expression
indented_expression:
indented_text / indented_nomsu / indented_list / indented_dict
/ ("(..)"? indent
2018-05-03 16:30:55 -07:00
(block / action / expression)
(dedent / (({} (non_dedent_error -> "Error while parsing indented expression")) => error))
)
expression:
inline_expression / (":" %ws* (inline_block / inline_action / inline_expression) eol) / indented_expression
2017-12-30 14:31:07 -08:00
-- Function calls need at least one word in them
inline_action (Action):
{| (inline_expression %ws*)* word (%ws* (inline_expression / word))*
(%ws* ":" %ws* (inline_block / inline_action / inline_expression))?|} -> Tuple
action (Action):
{| (expression (dotdot? %ws*))* word ((dotdot? %ws*) (expression / word))* |} -> Tuple
2017-12-30 14:31:07 -08:00
word (Word): { %operator / (!number plain_word) }
2017-12-30 14:31:07 -08:00
text_word (Text): {| {%operator / (!number plain_word)} |} -> Tuple
2018-01-11 01:09:26 -08:00
inline_text (Text):
!('".."' eol)
'"' ({|
({~ (('\"' -> '"') / ('\\' -> '\') / %escaped_char / [^%nl\"])+ ~}
/ inline_text_interpolation)*
2018-05-03 16:30:55 -07:00
|} -> Tuple) ('"' / (({} ([^%nl]*->'Failed to find a closing " mark on the same line')) => error))
-- Have to use "%indent" instead of "indent" etc. to avoid messing up text lines that start with "#"
2018-01-11 01:09:26 -08:00
indented_text (Text):
'".."' eol %nl ({|
{~ (%nl*) (%indent -> "") ~}
({~
(("\\" -> "\") / (("\" nodent "..") -> "")/ (%nl+ {~ %nodent -> "" ~}) / [^%nl\] / (!text_interpolation "\"))+
2018-01-11 01:09:26 -08:00
~} / text_interpolation)*
2018-05-03 16:30:55 -07:00
|} -> Tuple) (((!.) &%dedent) / (&(%nl %dedent)) / (({} (non_dedent_error -> "Error while parsing Text")) => error))
inline_text_interpolation:
"\" (
variable / inline_list / inline_dict / inline_text
2018-05-03 16:30:55 -07:00
/ ("("
%ws* (inline_block / inline_action / inline_expression) %ws*
(")"
/ (({} (&%nl -> 'Expected to find a ")" before the end of the line')) => error)
/ (({} ([^%nl]* -> 'Error while parsing text interpolation')) => error))
)
)
text_interpolation:
inline_text_interpolation /
("\" indented_expression nodent "..")
2017-12-30 14:31:07 -08:00
number (Number): (("-"? (([0-9]+ "." [0-9]+) / ("." [0-9]+) / ([0-9]+)))-> tonumber)
-- Variables can be nameless (i.e. just %) and can't contain operators like apostrophe
-- which is a hack to allow %'s to parse as "%" and "' s" separately
variable (Var): "%" { plain_word? }
inline_list (List):
!('[..]')
2018-05-03 16:30:55 -07:00
"[" %ws* ({| (inline_list_item (comma inline_list_item)* comma?)? |} -> Tuple) %ws*
("]" / (({} ([^%nl]*->"Failed to find a closing ] on the same line")) => error))
2017-12-30 14:31:07 -08:00
indented_list (List):
"[..]" indent ({|
2017-12-30 14:31:07 -08:00
list_line (nodent list_line)*
|} -> Tuple)
2018-05-03 16:30:55 -07:00
(dedent / (({} (non_dedent_error -> "Error while parsing list")) => error))
2017-12-30 14:31:07 -08:00
list_line:
((action / expression) !comma)
/ (inline_list_item (comma list_line?)?)
inline_list_item: inline_block / inline_action / inline_expression
2017-12-30 14:31:07 -08:00
inline_dict (Dict):
!('{..}')
2018-05-03 16:30:55 -07:00
"{" %ws* ({| (inline_dict_item (comma inline_dict_item)*)? |} -> Tuple) %ws*
("}"
/ (({} (%ws* comma? (!. / &%nl)->"Failed to find a closing } on the same line")) => error)
/ (({} ([^%nl]*->"Error while parsing dictionary")) => error))
indented_dict (Dict):
"{..}" indent ({|
dict_line (nodent dict_line)*
|} -> Tuple)
2018-05-03 16:30:55 -07:00
(dedent / (({} (non_dedent_error -> "Error while parsing dict")) => error))
dict_line:
((dict_key %ws* ":" %ws* (action / expression)) -> DictEntry !comma)
/ (inline_dict_item (comma dict_line?)?)
inline_dict_item:
2018-05-03 16:30:55 -07:00
((dict_key %ws* (":" %ws* (inline_block / inline_action / inline_expression)?)?)-> DictEntry)
2018-04-11 20:05:12 -07:00
dict_key:
text_word / inline_expression
block_comment: "#.." [^%nl]* (%nl+ %indent [^%nl]* (%nl+ %nodent [^%nl]*)* %dedent)?
line_comment: "#" [^%nl]*
2017-12-30 14:31:07 -08:00
eol: %ws* line_comment? (!. / &%nl)
ignored_line: (%nodent (block_comment / line_comment)) / (%ws* (!. / &%nl))
indent: eol (%nl ignored_line)* %nl %indent ((block_comment/line_comment) (%nl ignored_line)* nodent)?
nodent: eol (%nl ignored_line)* %nl %nodent
dedent: eol (%nl ignored_line)* (((!.) &%dedent) / (&(%nl %dedent)))
2018-05-03 16:30:55 -07:00
non_dedent_error: (!dedent .)* eol (%nl ignored_line)* (!. / &%nl)
2017-12-30 14:31:07 -08:00
comma: %ws* "," %ws*
dotdot: nodent ".."
2017-12-30 14:31:07 -08:00
plain_word: ([a-zA-Z0-9_] / %utf8_char)+