Mercurial > pub > Jint1
annotate Jint.Runtime/VM/BoxBase.cs @ 2:4aed85a1f558
implemented simple vm2
| author | cin |
|---|---|
| date | Fri, 25 Oct 2013 15:52:16 +0400 |
| parents | e113095f1de0 |
| children |
| rev | line source |
|---|---|
| 0 | 1 using System; |
| 2 | |
| 3 namespace Jint.Runtime.VM | |
| 4 { | |
| 5 public abstract class BoxBase | |
| 6 { | |
| 7 public abstract bool IsReference { get; } | |
| 8 public abstract Type HoldingType { get; } | |
| 9 public abstract T Convert<T> (); | |
| 10 | |
| 11 public abstract void Invoke(IBinaryOperation op,BoxBase arg2, Frame frame); | |
| 12 | |
| 13 } | |
| 14 } | |
| 15 |
