From a711333a2ec0db9accb52d8d58917a7674cd1a19 Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Mon, 8 Jul 2024 07:30:26 +0200 Subject: [PATCH] simple-store.go: commented out an unused function --- simple-store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple-store.go b/simple-store.go index 6dcd188..737671f 100644 --- a/simple-store.go +++ b/simple-store.go @@ -25,7 +25,7 @@ func NewSimpleStore() *SimpleStore { } func filterRefName(name string) bool { return name[0] != '@' } -func filterPrivName(name string) bool { return name[0] != '_' } +//func filterPrivName(name string) bool { return name[0] != '_' } func (ctx *SimpleStore) SetParent(parentCtx ExprContext) { ctx.parent = parentCtx