Hi! If instaparse parses a string in Clojure but fails to do the same in cljs with an identical grammar, what's a good place to start debugging?
instaparse defers to the host language when it comes to regex syntax, so if you have a #"…"
in your grammar that might be a good place to start
Aha! I do, will check that, thanks
Got it, it was Javas [^]+]
vs. JS' [^\]+]
, thanks again 🙂
Writing the parser was a breeze btw!
nice! cool to hear that, thx