annotate Jint.Runtime/VM/ISetter.cs @ 1:033ebe7432d5

vm v2
author cin
date Thu, 24 Oct 2013 19:45:57 +0400
parents e113095f1de0
children aced2ae9957f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
1 using System;
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
2
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
3 namespace Jint.Runtime.VM
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
4 {
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
5 public interface ISetter<in T>
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
6 {
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
7 void Set (T value);
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
8 }
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
9 }
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
10