Mercurial > pub > Jint1
annotate Jint.Runtime/VM/OpCodes/AbstractBinaryOp.cs @ 8:5b2302d3ac4f default tip
Слияние
| author | cin |
|---|---|
| date | Wed, 30 Oct 2013 20:44:42 +0400 |
| parents | 17543aa3aced |
| children |
| rev | line source |
|---|---|
| 7 | 1 using System; |
| 2 | |
| 3 namespace Jint.Runtime.VM.OpCodes | |
| 4 { | |
| 5 abstract class AbstractBinaryOp: AbstractOp | |
| 6 { | |
| 7 protected int m_arg1; | |
| 8 protected int m_arg2; | |
| 9 protected int m_dest; | |
| 10 | |
| 11 protected AbstractBinaryOp (int arg1, int arg2, int dest) | |
| 12 { | |
| 13 m_arg1 = arg1; | |
| 14 m_arg2 = arg2; | |
| 15 m_dest = dest; | |
| 16 } | |
| 17 | |
| 18 #region IInstruction implementation | |
| 19 | |
| 20 public abstract IInstruction Invoke (Frame frame); | |
| 21 | |
| 22 #endregion | |
| 23 } | |
| 24 } | |
| 25 |
