X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=blobdiff_plain;f=Source%2FJavaScriptCore%2Fbytecode%2FUnlinkedCodeBlock.h;h=b11ab0ea185fa2389794b67fe31bd05a2dad18d3;hp=7c091e1f16909ee3b6cf145a710044817849f6c4;hb=f37d72fb9bc7f5313437f96a24e405e265c48877;hpb=d8fa053a820787d8b9544c74c65dcd112d5bd73b diff --git a/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.h b/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.h index 7c091e1f1690..b11ab0ea185f 100644 --- a/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.h +++ b/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.h @@ -383,6 +383,7 @@ public: UnlinkedHandlerInfo& exceptionHandler(int index) { ASSERT(m_rareData); return m_rareData->m_exceptionHandlers[index]; } SymbolTable* symbolTable() const { return m_symbolTable.get(); } + void setSymbolTable(SymbolTable* table) { m_symbolTable.set(*m_vm, this, table); } VM* vm() const { return m_vm; }