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

Слияние
author cin
date Wed, 30 Oct 2013 20:44:42 +0400
parents a6329b092499
children
comparison
equal deleted inserted replaced
7:17543aa3aced 8:5b2302d3ac4f
1 using System;
2
3 namespace Jint.Runtime.VM
4 {
5 interface IReference
6 {
7 T Get<T>();
8 void Put<T>(T value);
9 void CopyTo (Frame frame, int dest);
10 }
11 }
12