Mercurial > pub > Jint1
comparison Jint.Runtime/VM2/Box.cs @ 1:033ebe7432d5
vm v2
author | cin |
---|---|
date | Thu, 24 Oct 2013 19:45:57 +0400 |
parents | |
children | 4aed85a1f558 |
comparison
equal
deleted
inserted
replaced
0:e113095f1de0 | 1:033ebe7432d5 |
---|---|
1 using System; | |
2 | |
3 namespace Jint.Runtime.VM2 | |
4 { | |
5 using OpCodes; | |
6 | |
7 public class Box | |
8 { | |
9 public Operation[] impl; | |
10 public object value; | |
11 | |
12 public Type HoldingType { | |
13 get { | |
14 return value == null ? null : value.GetType (); | |
15 } | |
16 } | |
17 } | |
18 } | |
19 |