Tackling bit-rot
This commit is contained in:
parent
11090d63ef
commit
311ebafa5c
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
buildall.tmp.*
|
||||||
|
.lein-failures
|
||||||
|
.lein-repl-history
|
||||||
|
target/
|
||||||
|
pom.xml
|
||||||
|
|
3882
docs/uberdoc.html
Normal file
3882
docs/uberdoc.html
Normal file
File diff suppressed because one or more lines are too long
|
@ -11,8 +11,8 @@
|
||||||
:license {:name "GNU General Public License v2"
|
:license {:name "GNU General Public License v2"
|
||||||
:url "http://www.gnu.org/licenses/gpl-2.0.html"}
|
:url "http://www.gnu.org/licenses/gpl-2.0.html"}
|
||||||
:plugins [[lein-marginalia "0.7.1"]]
|
:plugins [[lein-marginalia "0.7.1"]]
|
||||||
:dependencies [[org.clojure/clojure "1.6.0"]
|
:dependencies [[org.clojure/clojure "1.11.1"]
|
||||||
[org.clojure/tools.trace "0.7.9"]
|
[org.clojure/tools.trace "0.7.11"]
|
||||||
[instaparse "1.4.1"]
|
[instaparse "1.4.12"]
|
||||||
[mw-engine "0.1.6-SNAPSHOT"]
|
[mw-engine "0.1.6-SNAPSHOT"]
|
||||||
])
|
])
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
(ns mw-parser.declarative
|
||||||
|
(:require [mw-engine.utils :refer [member?]])
|
||||||
|
(:require [instaparse.core :as insta]))
|
||||||
(ns ^{:doc "A very simple parser which parses production rules."
|
(ns ^{:doc "A very simple parser which parses production rules."
|
||||||
:author "Simon Brooke"}
|
:author "Simon Brooke"}
|
||||||
mw-parser.declarative
|
mw-parser.declarative
|
||||||
|
|
Loading…
Reference in a new issue