summaryrefslogtreecommitdiff
path: root/debugoff.go
diff options
context:
space:
mode:
authorAdam Scarr <adam@vektah.net>2017-08-07 20:07:29 +1000
committerAdam Scarr <adam@vektah.net>2017-08-07 20:07:29 +1000
commitcc9d18219af9375ad89eaa8a23f1e0bcffa5734e (patch)
tree4aaf4771b90fbf622f1ebb80a8dabd6a149deb69 /debugoff.go
parent02103782eb22edeca876936596674fa07442daf4 (diff)
add debugging
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() {
+
+}