add request to support parsing of deeply nested expressions

This commit is contained in:
Jeremy Hylton 2000-10-06 15:56:27 +00:00
parent 83df1616c7
commit 7f0174c615
1 changed files with 9 additions and 0 deletions

View File

@ -62,6 +62,15 @@ Core Language / Builtins
http://sourceforge.net/bugs/?func=detailbug&group_id=5470&bug_id=115143 http://sourceforge.net/bugs/?func=detailbug&group_id=5470&bug_id=115143
- The parser should handle more deeply nested parse trees.
The following will fail -- eval("["*50 + "]"*50) -- because the
parser has a hard-coded limit on stack size. This limit should
be raised or removed. Removal would be hard because the
current compiler can overflow the C stack if the nesting is too
deep.
http://sourceforge.net/bugs/?func=detailbug&bug_id=115555&group_id=5470
Standard Library Standard Library