summaryrefslogtreecommitdiff
path: root/debugoff.go
diff options
context:
space:
mode:
Diffstat (limited to 'debugoff.go')
-rw-r--r--debugoff.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/debugoff.go b/debugoff.go
new file mode 100644
index 0000000..8eb4790
--- /dev/null
+++ b/debugoff.go
@@ -0,0 +1,11 @@
+// +build !debug
+
+package goparsify
+
+func NewParser(description string, p Parser) Parser {
+ return p
+}
+
+func DumpDebugStats() {
+
+}