view Jint.Runtime/VM/IInstruction.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 IInstruction {
        IInstruction Invoke(Frame frame);
    }
}