aboutsummaryrefslogtreecommitdiff
path: root/lib/propmangle.js
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2021-01-24 01:51:18 +0000
committerGitHub <noreply@github.com>2021-01-24 09:51:18 +0800
commit8bfd891c09edfb54d1b93010487ee68ad64a457c (patch)
tree947c02f460b927b4a0843e3f0955a5636621a067 /lib/propmangle.js
parentef9f7ca3e7c7f71df440645f782b3a7da4646d9b (diff)
downloadtracifyjs-8bfd891c09edfb54d1b93010487ee68ad64a457c.tar.gz
tracifyjs-8bfd891c09edfb54d1b93010487ee68ad64a457c.zip
support BigInt literals (#4583)
Diffstat (limited to 'lib/propmangle.js')
-rw-r--r--lib/propmangle.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/propmangle.js b/lib/propmangle.js
index 80797599..254780f9 100644
--- a/lib/propmangle.js
+++ b/lib/propmangle.js
@@ -228,7 +228,7 @@ function mangle_properties(ast, options) {
var mangled = cache.get(name);
if (!mangled) {
if (debug) {
- // debug mode: use a prefix and suffix to preserve readability, e.g. o.foo -> o._$foo$NNN_.
+ // debug mode: use a prefix and suffix to preserve readability, e.g. o.foo ---> o._$foo$NNN_.
var debug_mangled = "_$" + name + "$" + debug_suffix + "_";
if (can_mangle(debug_mangled)) mangled = debug_mangled;
}