--
You received this message because you are subscribed to the Google Groups "Frege Programming Language" group.
To unsubscribe from this group and stop receiving emails from it, send an email to frege-programming-l...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Regarding the lexer, it already recognises comments. It also knows the offsets and length of each token. So one can simply fill the gaps with whitespace tokens, if that is needed.
However, the lexer alone doesn't provide enough information for more than most basic syntax colouring. For example, it can't tell if a name is a name space, type class, type constructor or data constructor. It also doesn't know if that name is imported from another module.
Anyway, if we can form a working group, I'll be happy to take part or at least assist.
For me, it would be helpful to have a skeleton, where all the boilerplate for the various features is done and I could just fill in the Frege specific code.
The feature list should not be less ambitious than what we have in the eclipse plugin, and possibly more.
--
You received this message because you are subscribed to the Google Groups "Frege Programming Language" group.
To unsubscribe from this group and stop receiving emails from it, send an email to frege-programming-l...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
- Wrte an eclipse plugin from scratch, using latest Eclipse technology. Pro: future-proof. Contra: who can do this?
module Main where
main = putStrLn "Hola"
--
Maybe once that is done then we can see if it would be worthwhile to continue working on the Xtext based editor?
-H