diff options
author | kzc <kzc@users.noreply.github.com> | 2018-01-12 02:41:09 -0500 |
---|---|---|
committer | Alex Lam S.L <alexlamsl@gmail.com> | 2018-01-12 15:41:09 +0800 |
commit | d4d7d99b70da46303aff3152cec197c371596d0b (patch) | |
tree | 9fd10118b2e9a5a25cf9248663d1ea313919bc2d /lib/scope.js | |
parent | 6a696d0a7ba88483a31e243d27b006c8c9ae0ec2 (diff) | |
download | tracifyjs-d4d7d99b70da46303aff3152cec197c371596d0b.tar.gz tracifyjs-d4d7d99b70da46303aff3152cec197c371596d0b.zip |
add SymbolDef IDs to --output ast (#2772)
Diffstat (limited to 'lib/scope.js')
-rw-r--r-- | lib/scope.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scope.js b/lib/scope.js index af852bb1..55b3ddbb 100644 --- a/lib/scope.js +++ b/lib/scope.js @@ -57,7 +57,7 @@ function SymbolDef(scope, orig, init) { this.id = SymbolDef.next_id++; }; -SymbolDef.next_id = 1; +SymbolDef.next_id = 1e6; SymbolDef.prototype = { unmangleable: function(options) { |