According to Kusto documentation, keywords in and !in are case-sensitive by default and there are case-insensitive variants with ~. However, this parser library assigns SyntaxKind values the other way around, as can be seen here:
|
new SyntaxData(SyntaxKind.InCsKeyword, "in~", opKind: OperatorKind.InCs), |