mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-02 03:19:41 +03:00
fix leo-inputs pest for i types
This commit is contained in:
parent
fe2f29ccad
commit
df49f798de
@ -87,7 +87,7 @@ value = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Declared in values/number_value.rs
|
// Declared in values/number_value.rs
|
||||||
value_number = @{ "0" | ASCII_NONZERO_DIGIT ~ ASCII_DIGIT* }
|
value_number = @{ (("-" ~ ASCII_NONZERO_DIGIT) | "0" | ASCII_NONZERO_DIGIT) ~ ASCII_DIGIT* }
|
||||||
|
|
||||||
// Declared in values/number_implicit_value.rs
|
// Declared in values/number_implicit_value.rs
|
||||||
value_implicit = { value_number }
|
value_implicit = { value_number }
|
||||||
|
Loading…
Reference in New Issue
Block a user