diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-07-13 15:17:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-13 15:17:10 +0200 |
commit | ec32d19a84b2cc61a34442a4562e080cb6cd7db0 (patch) | |
tree | 23d12811c6660bf6459ec82890d800029fbd8d4f /js | |
parent | d4b0944e051effc3a4fc089441011ffee6f0dc5e (diff) | |
parent | 71a1c47759f30f114ad4e5634ba5224744b7c18c (diff) | |
download | uxp-ec32d19a84b2cc61a34442a4562e080cb6cd7db0.tar.gz |
Merge pull request #628 from janekptacijarabaci/build_bustage_debug_1
Fix Build Bustage - with "--enable-debug"
Diffstat (limited to 'js')
-rw-r--r-- | js/src/vm/EnvironmentObject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/js/src/vm/EnvironmentObject.h b/js/src/vm/EnvironmentObject.h index d457ca8392..0322861164 100644 --- a/js/src/vm/EnvironmentObject.h +++ b/js/src/vm/EnvironmentObject.h @@ -930,6 +930,9 @@ class DebugEnvironments void mark(JSTracer* trc); void sweep(JSRuntime* rt); void finish(); +#ifdef JSGC_HASH_TABLE_CHECKS + void checkHashTablesAfterMovingGC(JSRuntime* runtime); +#endif // If a live frame has a synthesized entry in missingEnvs, make sure it's not // collected. |