From ab70f983dc7d268b9d0ed93ed35828b31e72216f Mon Sep 17 00:00:00 2001 From: Nazarov Konstantin Date: Mon, 5 Sep 2022 18:20:22 +0300 Subject: [PATCH] fix naming runtime/interpreter Change-Id: I9c75ddd6614c2304e4b45203ef70961ca3228957 Signed-off-by: Nazarov Konstantin --- runtime/interpreter/ecma-interpreter-inl.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/runtime/interpreter/ecma-interpreter-inl.h b/runtime/interpreter/ecma-interpreter-inl.h index 5fce35b04..293b0509c 100644 --- a/runtime/interpreter/ecma-interpreter-inl.h +++ b/runtime/interpreter/ecma-interpreter-inl.h @@ -99,17 +99,17 @@ public: } }; -template -class InstructionHandler : public interpreter::InstructionHandler { +template +class InstructionHandler : public interpreter::InstructionHandler { public: ALWAYS_INLINE inline InstructionHandler(interpreter::InstructionHandlerState *state) - : interpreter::InstructionHandler(state) + : interpreter::InstructionHandler(state) { } ALWAYS_INLINE JSThread *GetJSThread() const { - return JSThread::Cast(interpreter::InstructionHandler::GetThread()); + return JSThread::Cast(interpreter::InstructionHandler::GetThread()); } ALWAYS_INLINE JSTaggedValue GetRegAsTaggedValue(uint16_t v) @@ -196,7 +196,7 @@ public: // Update EcmascirptEnv js_thread->SetEcmascriptEnv(js_thread->GetEcmascriptEnv()->GetPrevEnvironment()); - interpreter::InstructionHandler::HandleReturnStackless(); + interpreter::InstructionHandler::HandleReturnStackless(); } template -- Gitee