diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2018-09-06 12:46:39 -0700 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2018-09-06 12:48:16 -0700 |
| commit | a35d010dfe2b2769cf13ae508952c279aecb3aac (patch) | |
| tree | 69ce1fcd0123832599d2766d361a8a8b43fcfb4b /parser.lua | |
| parent | e1bc075bb5319b3903f66e141810dcb9ef53042e (diff) | |
Removed the mandatory "_" prefix for Nomsu variables, renamed "list" and
"dict" to "List" and "Dict", or in Nomsu's environment, "_List" and
"_Dict", removed uuid.lua and replaced it with core/id.nom for handling
IDs.
Diffstat (limited to 'parser.lua')
| -rw-r--r-- | parser.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ local lpeg = require('lpeg') local re = require('re') -lpeg.setmaxstack(10000) +lpeg.setmaxstack(20000) local P, R, S, C, Cmt, Carg P, R, S, C, Cmt, Carg = lpeg.P, lpeg.R, lpeg.S, lpeg.C, lpeg.Cmt, lpeg.Carg local match, sub |
