diff Jint.Runtime/VM/Machine.cs @ 8:5b2302d3ac4f default tip

Слияние
author cin
date Wed, 30 Oct 2013 20:44:42 +0400
parents a6329b092499
children
line wrap: on
line diff
--- a/Jint.Runtime/VM/Machine.cs	Tue Oct 29 07:04:33 2013 +0400
+++ b/Jint.Runtime/VM/Machine.cs	Wed Oct 30 20:44:42 2013 +0400
@@ -1,15 +1,15 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace Jint.Runtime.VM {
-    class Machine {
-        Frame m_frame;
-
-        public void Run(IInstruction prog) {
-            while (prog != null)
-                prog = prog.Invoke(m_frame);
-        }
-    }
-}
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace Jint.Runtime.VM {
+    class Machine {
+        Frame m_frame;
+
+        public void Run(IInstruction prog) {
+            while (prog != null)
+                prog = prog.Invoke(m_frame);
+        }
+    }
+}