nomsu/nomsu.peg

117 lines
4.3 KiB
Plaintext
Raw Normal View History

2017-12-30 14:31:07 -08:00
file (File):
{| shebang?
(ignored_line %nl)*
statement (nodent statement)*
2017-12-30 14:31:07 -08:00
(%nl ignored_line)*
(!. / (("" -> "Parse error") => error)?) |} -> Tuple
2017-12-30 14:31:07 -08:00
shebang: "#!" [^%nl]* (!. / %nl)
2017-12-30 14:31:07 -08:00
statement: action / expression
2017-12-30 14:31:07 -08:00
indented_block (Block):
{| indent
statement (nodent statement)*
(dedent / (("" -> "Error while parsing block") => error))
|} -> Tuple
2017-12-30 14:31:07 -08:00
inline_nomsu (Nomsu): "\" noindex_inline_expression
indented_nomsu (Nomsu):
"\" (noindex_inline_expression / (":" %ws* (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 ("." ((({} ({|{%operator / (!number plain_word)}|} -> Tuple) {}) -> Text) / noindex_inline_expression))+ |} -> Tuple
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* ")")
2018-04-06 16:45:51 -07:00
inline_expression:
index_chain / noindex_inline_expression
indented_expression:
2018-01-11 01:09:26 -08:00
indented_text / indented_nomsu / indented_list / indented_dict / indented_block
expression:
inline_expression / (":" %ws* (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_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
2018-01-11 01:09:26 -08:00
inline_text (Text):
!('".."' eol)
'"' ({|
({~ (('\"' -> '"') / ('\\' -> '\') / %escaped_char / [^%nl\"])+ ~}
/ inline_text_interpolation)*
|} -> Tuple) '"'
-- 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 -> "") ~}
({~
(("\\" -> "\") / (("\" eol %nl+ %nodent "..") -> "")
/ (%nl+ {~ %nodent -> "" ~}) / [^%nl\])+
2018-01-11 01:09:26 -08:00
~} / text_interpolation)*
|} -> Tuple) (((!.) &%dedent) / (&(%nl %dedent)) / (("" -> "Error while parsing Text") => error))
inline_text_interpolation:
"\" (
variable / inline_list / inline_dict / inline_text
/ ("(" %ws* (inline_action / inline_expression) %ws* ")")
)
text_interpolation:
inline_text_interpolation /
("\"
(block_comment / line_comment / indented_text / indented_list / indented_block)?
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):
!('[..]')
"[" %ws* ({| (inline_list_item (comma inline_list_item)* comma?)? |} -> Tuple) %ws* "]"
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)
2017-12-30 14:31:07 -08:00
(dedent / (("" -> "Error while parsing list") => error))
list_line:
((action / expression) !comma)
/ (inline_list_item (comma list_line?)?)
inline_list_item: inline_action / inline_expression
2017-12-30 14:31:07 -08:00
inline_dict (Dict):
!('{..}')
"{" %ws* ({| (inline_dict_item (comma inline_dict_item)* comma?)? |} -> Tuple) %ws* "}"
indented_dict (Dict):
"{..}" indent ({|
dict_line (nodent dict_line)*
|} -> Tuple)
(dedent / (("" -> "Error while parsing dict") => error))
dict_line:
((dict_key %ws* ":" %ws* (action / expression)) -> DictEntry !comma)
/ (inline_dict_item (comma dict_line?)?)
inline_dict_item:
(dict_key %ws* ":" %ws* (inline_action / inline_expression)) -> DictEntry
2018-04-11 20:05:12 -07:00
dict_key:
(({} ({|{%operator / (!number plain_word)}|} -> Tuple) {}) -> Text) / 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)))
2017-12-30 14:31:07 -08:00
comma: %ws* "," %ws*
dotdot: nodent ".." %ws*
plain_word: ([a-zA-Z0-9_] / %utf8_char)+