File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1212
1313PRIMITIVE_RULES = {
1414 'boolean' : '("true" | "false") space' ,
15- 'integral-part' : '[0-9] | [1-9] [0-9]? [0-9]? [0-9]? [0-9]? [0-9]? [0-9]? [0-9]? [0-9]? [0-9]? [0-9]?' ,
16- 'decimal-part' : '[0-9] [0-9]? [0-9]? [0-9]? [0-9]? [0-9]? [0-9]? [0-9]? [0-9]? [0-9]? [0-9]?' ,
15+ 'decimal-part' : '[0-9] ([0-9] ([0-9] ([0-9] ([0-9] ([0-9] ([0-9] ([0-9] ([0-9] ([0-9] [0-9]?)?)?)?)?)?)?)?)?)?' ,
16+ 'integral-part' : '[0-9] | [1-9] ([0-9] ([0-9] ([0-9] ([0-9] ([0-9] ([0-9] ([0-9] ([0-9] ([0-9] [0-9]?)?)?)?)?)?)?)?)?)?' ,
17+
1718 # 'number': '("-"? ([0-9] | [1-9] [0-9]*)) ("." [0-9]+)? ([eE] [-+]? [0-9]+)? space',
1819 # 'integer': '("-"? ([0-9] | [1-9] [0-9]*)) space',
1920 'number' : '("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space' ,
You can’t perform that action at this time.
0 commit comments