We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b27dd5 commit a465ee7Copy full SHA for a465ee7
1 file changed
External/Plugins/CodeFormatter/InfoCollector/Utilities.cs
@@ -31,7 +31,7 @@ public static String convertCarriageReturnsToLineFeeds(String source)
31
32
public static bool isJavaIdentifierPart(char ch)
33
{
34
- return Char.IsLetterOrDigit(ch) || ch == '_';
+ return Char.IsLetterOrDigit(ch) || ch == '_' || ch == '$';
35
}
36
37
0 commit comments