Mercurial > pub > Jint1
annotate Jint.Runtime/VM/BoxBase.cs @ 0:e113095f1de0
initial commit, proof of concept
author | cin |
---|---|
date | Wed, 23 Oct 2013 13:24:57 +0400 |
parents | |
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 |