Are defsyntax macros supposed to work in ClojureScript?
When running in ClojureScript browser environment the following example fails with "Cannot read properties of undefined" pointing to m/cata.
(ns test
(:require [meander.epsilon :as m]))
(m/match [:tag 1 2 3]
[:tag & ?rest] (m/cata ?rest)
_ :nomatch)