cceelen

Results 8 comments of cceelen

Hi I just ran into this problem and means that i cannot use castlemock for the WSDLs and XSDs i have. These follow OTA implementation standards, which means you have...

Hi @KvanTTT I'd love to avoid the duplication. Reading up online i was not finding ways to import other grammars from other directories. If there is a way to do...

Hi @KvanTTT, I ran out of ideas on how to avoid the copy of the tsql grammar files. Two issues: - Imports are only working within the same directory. -...

I was trying to replace it with this rule: `STRING options { caseInsensitive=false; } : 'N'? ('\'' (~'\'' | '\'\'')* '\'' | '"' (~'"' | '\\"' )* '"' );` But...

Hi @kaby76 i was using the t-sql grammars and not the specific one for maria DB. https://github.com/antlr/grammars-v4/tree/master/sql/tsql The SQL I want to parse is from Sybase. So it's good to...

I get different errors using different antlr tools. The JetBrains plugin cannot even find the new lexer rule while the VSCode plugin cannot deal with the tsql base grammar but...

I think i have found one of the issues. The tools seem to use different options during grammar generations. Some are lenient and allow generation with warnings and other turn...

I updated the code. It now works. IMO the best way was to override the rule STRING as it avoids change a all other rules accepted single quoted strings.