Skip to content

Commit a465ee7

Browse files
committed
Dollar can be in the identifier, fixes fdorg#746
1 parent 0b27dd5 commit a465ee7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

External/Plugins/CodeFormatter/InfoCollector/Utilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static String convertCarriageReturnsToLineFeeds(String source)
3131

3232
public static bool isJavaIdentifierPart(char ch)
3333
{
34-
return Char.IsLetterOrDigit(ch) || ch == '_';
34+
return Char.IsLetterOrDigit(ch) || ch == '_' || ch == '$';
3535
}
3636

3737
}

0 commit comments

Comments
 (0)