mirror of
https://github.com/fluencelabs/aquavm
synced 2025-06-13 06:51:22 +00:00
feat(execution-engine): a new :error: runtime attribute according with FLIP-11 [fixes VM-329] (#683)
* feat(execution-engine): a new :error: runtime attribute according with FLIP-11 [fixes VM-329]
This commit is contained in:
@ -135,7 +135,10 @@ fn parse_sexp_string(inp: Input<'_>) -> IResult<Input<'_>, Sexp, ParseError<'_>>
|
||||
fn parse_sexp_symbol(inp: Input<'_>) -> IResult<Input<'_>, Sexp, ParseError<'_>> {
|
||||
map(
|
||||
recognize(pair(
|
||||
many1_count(alt((value((), alphanumeric1), value((), one_of("_-.$#%"))))),
|
||||
many1_count(alt((
|
||||
value((), alphanumeric1),
|
||||
value((), one_of("_-.:$#%")),
|
||||
))),
|
||||
opt(terminated(
|
||||
delimited(tag("["), parse_sexp_symbol, tag("]")),
|
||||
opt(tag("!")),
|
||||
|
Reference in New Issue
Block a user