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
|