Mercurial > pub > Jint1
view Jint.Runtime/VM/ISetter.cs @ 8:5b2302d3ac4f default tip
Слияние
author | cin |
---|---|
date | Wed, 30 Oct 2013 20:44:42 +0400 |
parents | aced2ae9957f |
children |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Jint.Runtime.VM { interface ISetter<in T> { void Set(T value); } }