UNPKG
apg-lite
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
lightweight JavaScript APG parser
github.com/ldthomas/apg-lite
ldthomas/apg-lite
apg-lite
/
basic-app
/
grammar.txt
13 lines
•
285 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
; ; floating point number ; float = [sign] decimal [exponent] sign =
"+"
/
"-"
decimal = integer [dot [fraction]] / dot fraction integer = 1*%d48-57 dot =
"."
fraction = 1*%d48-57 exponent =
"e"
[esign] exp esign =
"+"
/
"-"
exp = 1*%d48-57