diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-24 20:26:31 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-24 20:26:31 -0800 |
commit | 9bbf760f9e930cf937ed3c927873c11f6fc90f68 (patch) | |
tree | 2ab1b63b012a32130510e07033ad5e60da5aafcb /tools | |
parent | b988457c13f77f50e03b4e46fbef4d5e42cfcf33 (diff) |
support for ignoring nacl intrinsics
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 0783dc75..cf7830e3 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -1509,7 +1509,7 @@ class JS: @staticmethod def to_nice_ident(ident): # limited version of the JS function toNiceIdent - return ident.replace('%', '$').replace('@', '_') + return ident.replace('%', '$').replace('@', '_').replace('.', '_') @staticmethod def make_initializer(sig, settings=None): |