Mercurial > pub > Jint1
annotate Jint.Runtime/VM/OpCodes/AbstractOp.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 abstract class AbstractOp: IInstruction { | |
| 5 | |
| 6 protected IInstruction m_next; | |
| 7 | |
| 8 public IInstruction Chain(IInstruction next) { | |
| 9 m_next = next; | |
| 10 return next; | |
| 11 } | |
| 12 | |
| 13 #region IInstruction implementation | |
| 14 | |
| 15 abstract public IInstruction Invoke (Frame frame); | |
| 16 | |
| 17 #endregion | |
| 18 } | |
| 19 } | |
| 20 |
