|
|
@@ -10933,7 +10933,7 @@ HRESULT Parser::ParseFunctionInBackground(ParseNodePtr pnodeFnc, ParseContext *p
|
|
|
|
|
|
HRESULT Parser::ParseSourceWithOffset(__out ParseNodePtr* parseTree, LPCUTF8 pSrc, size_t offset, size_t cbLength, charcount_t cchOffset,
|
|
|
bool isCesu8, ULONG grfscr, CompileScriptException *pse, Js::LocalFunctionId * nextFunctionId, ULONG lineNumber, SourceContextInfo * sourceContextInfo,
|
|
|
- Js::ParseableFunctionInfo* functionInfo, bool isReparse)
|
|
|
+ Js::ParseableFunctionInfo* functionInfo)
|
|
|
{
|
|
|
m_functionBody = functionInfo;
|
|
|
if (m_functionBody)
|
|
|
@@ -10942,7 +10942,7 @@ HRESULT Parser::ParseSourceWithOffset(__out ParseNodePtr* parseTree, LPCUTF8 pSr
|
|
|
m_InAsmMode = grfscr & fscrNoAsmJs ? false : m_functionBody->GetIsAsmjsMode();
|
|
|
}
|
|
|
m_deferAsmJs = !m_InAsmMode;
|
|
|
- m_parseType = isReparse ? ParseType_Reparse : ParseType_Deferred;
|
|
|
+ m_parseType = ParseType_Deferred;
|
|
|
return ParseSourceInternal( parseTree, pSrc, offset, cbLength, cchOffset, !isCesu8, grfscr, pse, nextFunctionId, lineNumber, sourceContextInfo);
|
|
|
}
|
|
|
|