After two months of petty bickering I finally settled to use dojo for portability among browsers and ready-to-go widget goodies. Currently, the application allows management of the in-memory filesystem, editing of Erlang code using CodeMirror control and compilation of the code. It even jumps to the correct line in the source
code when the error message is clicked in the compiler output pane!
The progress is stalled by the capabilities of the X Erlang itself. Now it is not possible to 'pause' a process to observe its internals.
The current version looks like this:
2 comments:
Did you code an Erlang parser for codeMirror?
pablo, it looked like a huge task to do the complete parser for Erlang just to do nice highlighting. I created a custom highlighter based on a simple tokenizer. That's it.
Post a Comment