I'm using ACE editor as an integrated editor in a web app for editing a custom language.
I've followed that code, and get a 404 trying to load {...}/ace/src/worker-{mylang}.js
OK, so there's still more to do. I've taken a look at several of the worker-*.js source files and they are HUGE and there is a LOT of repeated code across them.
It also seems there is a great deal of duplicated code across all of them. I suspect that these files are built as some sort of build process to fulfill requirements around web workers being a single .js file (It's a bit hard to believe that everyone has authored these independently).
Is there somewhere I can get the story on these?
Extra points... I'm looking to leverage a parser I've generated from ANTLR (I've used to to implement the java compiler for this language, and have generated the JavaScript target to parse my custom language). Any pointers on how I might utilize that are also appreciated.