view Jint.Runtime/VM/IBox.cs @ 3:aced2ae9957f

temp commit, new virtual machine concept (strongly typed version of VM2).
author cin
date Sun, 27 Oct 2013 17:23:25 +0400
parents
children
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Jint.Runtime.VM.OpCodes;

namespace Jint.Runtime.VM {
    interface IBox {
        Type HoldingType {
            get;
        }
        void InvokeBinaryOperation(Codes code, int arg2, int dest, Frame frame);
    }
}