Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2024-11-13 14:12:25 +03:00
parent 838bf76d46
commit aa426742da

View File

@ -29,6 +29,8 @@ var pwpath = require('./path')
// i.e.
// "aaa \"bbb \\"ccc\\" bbb\" aaa"
// XXX RENAME...
// ...this handles the syntax and lexing...
var BaseParser =
module.BaseParser = {
// patterns...
@ -673,6 +675,9 @@ function(spec, func){
return func }
// XXX RENAME...
// ...this is more of an expander/executer...
// ...might be a good idea to also do a check without executing...
var parser =
module.parser = {
__proto__: BaseParser,