tunnelvisionlabs / antlr4cs

The original, highly-optimized C# Target for ANTLR 4
Other
448 stars 103 forks source link

can TSQL support lowercase? #253

Open OliviaSong opened 6 years ago

OliviaSong commented 6 years ago

I saw Caseinsensitivetype option in Java,but this option is not found in C #, is not supported?

KvanTTT commented 6 years ago

Sure, try this AntlrCaseInsensitiveInputStream stream in runtime.

OliviaSong commented 6 years ago

@KvanTTT the code show that it transform all letter to lowercase But constants need to remain case sensitive

KvanTTT commented 6 years ago

This stream influence only of lexer work. Symbols case is not changing in parse tree tokens.

OliviaSong commented 6 years ago

@KvanTTT thanks ,it works