Mercurial > pub > Jint1
annotate Jint.Runtime/VM/OpCodes/AbstractOp.cs @ 7:17543aa3aced
sync
author | cin |
---|---|
date | Tue, 29 Oct 2013 07:04:33 +0400 |
parents | |
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 |