We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80141e6 commit 05b4bddCopy full SHA for 05b4bdd
src/Language/PureScript/Pretty/Common.hs
@@ -41,6 +41,7 @@ identToJs (Escaped name) = name
41
identCharToString :: Char -> String
42
identCharToString c | isAlphaNum c = [c]
43
identCharToString '_' = "_"
44
+identCharToString '.' = "$dot"
45
identCharToString '$' = "$dollar"
46
identCharToString '~' = "$tilde"
47
identCharToString '=' = "$eq"
0 commit comments