Mercurial > pub > Jint1
view Jint.Runtime/VM/OpCodes/AbstractBinaryOp.cs @ 8:5b2302d3ac4f default tip
Слияние
author | cin |
---|---|
date | Wed, 30 Oct 2013 20:44:42 +0400 |
parents | 17543aa3aced |
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 } }