Mercurial > pub > Jint1
comparison Jint.Runtime/VM/OpCodes/AbstractBinaryOp.cs @ 7:17543aa3aced
sync
| author | cin |
|---|---|
| date | Tue, 29 Oct 2013 07:04:33 +0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 5:cb13da6e3349 | 7:17543aa3aced |
|---|---|
| 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 |
