Skip to content

Instantly share code, notes, and snippets.

View cursive-ide's full-sized avatar

Colin Fleming cursive-ide

View GitHub Profile
@cursive-ide
cursive-ide / parsing.clj
Created August 29, 2014 23:35
Cursive parsing lib example
; Parsers are defined like this - this this for the core.typed defprotocol
(defn binder []
(vector (alt (symbol :into :bindings)
(vector (symbol :into :bindings)))))
(defn type-decl []
(all (keyword :matching :-)
(any :into :types)
(opt (alt (symbol :matching '*
:into :no-resolve)