view 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 source

using System;

namespace Jint.Runtime.VM
{
	interface IReference
	{
		T Get<T>();
		void Put<T>(T value);
		void CopyTo (Frame frame, int dest);
	}
}