In Xtext there are few different kinds of validations which xtext takes care automatically. Is there any possibility to disable them?
- Lexer/Parser: Syntactical Validation
- Linker: Crosslink Validation
I am trying to disable the parser/lexer for being able to edit very huge files into a dsl editor. As far as I can see it is not possible to do from mwe2 workflow, as following fragment is the entry point for being able to open the editor.
fragment = parser.antlr.XtextAntlrUiGeneratorFragment auto-inject {}
I have mentioned that InternalMysDslLexer class is instantiated many times while I am typing something. Should I override this class? what would be the correct approach?
Thank you.