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

Слияние
author cin
date Wed, 30 Oct 2013 20:44:42 +0400
parents a6329b092499
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Jint.Runtime/VM/IReference.cs	Wed Oct 30 20:44:42 2013 +0400
@@ -0,0 +1,12 @@
+using System;
+
+namespace Jint.Runtime.VM
+{
+	interface IReference
+	{
+		T Get<T>();
+		void Put<T>(T value);
+		void CopyTo (Frame frame, int dest);
+	}
+}
+