Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-01-31 17:22:06 +03:00
parent 4fc2e7fc5d
commit 1d7746aa85

View File

@ -433,6 +433,7 @@ object.Constructor('Parser', {
// instance stuff...
//
// XXX do we need all three???
script: null,
scriptNmae: null,
@ -443,6 +444,13 @@ object.Constructor('Parser', {
unhandled: null,
value: null,
// NOTE: this is dynamically set by the parent each time a nested
// parser is triggered, so when reusing parsers in multiple
// locations cuncurently it is recommended to create single-use
// instances for each context...
parent: false,
// Handler iterators...
//