annotate Jint.Runtime/VM/OpCodes/Codes.cs @ 3:aced2ae9957f

temp commit, new virtual machine concept (strongly typed version of VM2).
author cin
date Sun, 27 Oct 2013 17:23:25 +0400
parents 033ebe7432d5
children 1ae5b10f7a10
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
1 using System;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
2 using System.Collections.Generic;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
3 using System.Linq;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
4 using System.Text;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
5
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
6 namespace Jint.Runtime.VM.OpCodes {
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
7 enum Codes: int {
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
8 Noop = 0,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
9
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
10 Add,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
11 Sub,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
12 Div,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
13 Mul,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
14
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
15 BAnd,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
16 BOr,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
17 BNot,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
18
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
19 LAnd,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
20 LOr,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
21 LNot,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
22
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
23 Gte,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
24 Lte,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
25 Gt,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
26 Lt,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
27 Eq,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
28 Ne,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
29
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
30 MaxOp
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
31 }
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
32 }