Mercurial > pub > Jint1
comparison Jint.Runtime/VM/ISetter.cs @ 3:aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
author | cin |
---|---|
date | Sun, 27 Oct 2013 17:23:25 +0400 |
parents | e113095f1de0 |
children |
comparison
equal
deleted
inserted
replaced
2:4aed85a1f558 | 3:aced2ae9957f |
---|---|
1 using System; | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
2 | 5 |
3 namespace Jint.Runtime.VM | 6 namespace Jint.Runtime.VM { |
4 { | 7 interface ISetter<in T> { |
5 public interface ISetter<in T> | 8 void Set(T value); |
6 { | 9 } |
7 void Set (T value); | |
8 } | |
9 } | 10 } |
10 |