diff options
Diffstat (limited to 'Source/JavaScriptCore/bytecode/CodeOrigin.h')
-rw-r--r-- | Source/JavaScriptCore/bytecode/CodeOrigin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/bytecode/CodeOrigin.h b/Source/JavaScriptCore/bytecode/CodeOrigin.h index eda17648b..034e48f3f 100644 --- a/Source/JavaScriptCore/bytecode/CodeOrigin.h +++ b/Source/JavaScriptCore/bytecode/CodeOrigin.h @@ -28,6 +28,7 @@ #include "ValueRecovery.h" #include "WriteBarrier.h" +#include <wtf/BitVector.h> #include <wtf/StdLibExtras.h> #include <wtf/Vector.h> @@ -92,6 +93,7 @@ struct InlineCallFrame { WriteBarrier<ExecutableBase> executable; WriteBarrier<JSFunction> callee; CodeOrigin caller; + BitVector capturedVars; // Indexed by the machine call frame's variable numbering. unsigned stackOffset : 31; bool isCall : 1; }; |