From cf289e64743647b158ebcc85b4c7aade0d345067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zg=C3=BCr=20Kesim?= Date: Fri, 29 Nov 2019 07:50:44 +0100 Subject: [PATCH] added .Input to newly created Results --- combinator.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/combinator.go b/combinator.go index f5c06e3..b6b888b 100644 --- a/combinator.go +++ b/combinator.go @@ -12,6 +12,7 @@ func Seq(parsers ...Parserish) Parser { node.Child = make([]Result, len(parserfied)) startpos := ps.Pos for i, parser := range parserfied { + node.Child[i].Input = node.Input parser(ps, &node.Child[i]) if ps.Errored() { ps.Pos = startpos @@ -97,7 +98,7 @@ func manyImpl(min int, op Parserish, sep ...Parserish) Parser { node.Child = make([]Result, 0, 5) startpos := ps.Pos for { - node.Child = append(node.Child, Result{}) + node.Child = append(node.Child, Result{Input: node.Input}) opParser(ps, &node.Child[len(node.Child)-1]) if ps.Errored() { if len(node.Child)-1 < min || ps.Cut > ps.Pos {