Parcourir la source

tabs to spaces

Matt Gardner il y a 8 ans
Parent
commit
4cd121b984
1 fichiers modifiés avec 10 ajouts et 10 suppressions
  1. 10 10
      lib/Runtime/Language/JavascriptStackWalker.cpp

+ 10 - 10
lib/Runtime/Language/JavascriptStackWalker.cpp

@@ -523,17 +523,17 @@ namespace Js
         this->isJavascriptFrame = this->CheckJavascriptFrame(includeInlineFrames);
 
 #if ENABLE_NATIVE_CODEGEN
-		if (this->IsJavascriptFrame() && this->interpreterFrame && lastInternalFrameInfo.codeAddress != nullptr)
-		{
-			this->previousInterpreterFrameIsForLoopBody = true;
-		}
-		else
-		{
-			this->previousInterpreterFrameIsForLoopBody = false;
-		}
+        if (this->IsJavascriptFrame() && this->interpreterFrame && lastInternalFrameInfo.codeAddress != nullptr)
+        {
+            this->previousInterpreterFrameIsForLoopBody = true;
+        }
+        else
+        {
+            this->previousInterpreterFrameIsForLoopBody = false;
+        }
 #endif
-		
-		if (this->IsJavascriptFrame())
+
+        if (this->IsJavascriptFrame())
         {
             // In case we have a cross site thunk, update the script context
             Js::JavascriptFunction *function = this->GetCurrentFunction();