Mercurial > pub > Jint1
view Jint.Runtime/VM/OpCodes/AbstractBinaryOp.cs @ 7:17543aa3aced
sync
author | cin |
---|---|
date | Tue, 29 Oct 2013 07:04:33 +0400 |
parents | |
children |
line wrap: on
line source
using System; namespace Jint.Runtime.VM.OpCodes { abstract class AbstractBinaryOp: AbstractOp { protected int m_arg1; protected int m_arg2; protected int m_dest; protected AbstractBinaryOp (int arg1, int arg2, int dest) { m_arg1 = arg1; m_arg2 = arg2; m_dest = dest; } #region IInstruction implementation public abstract IInstruction Invoke (Frame frame); #endregion } }