Mercurial > pub > Jint1
view Jint.Runtime/VM/IGettter.cs @ 7:17543aa3aced
sync
author | cin |
---|---|
date | Tue, 29 Oct 2013 07:04:33 +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 IGettter<out T> { T Get(); } }