annotate Jint.Runtime/VM/OpCodes/Codes.cs @ 8:5b2302d3ac4f default tip

Слияние
author cin
date Wed, 30 Oct 2013 20:44:42 +0400
parents 1ae5b10f7a10
children
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
4
1ae5b10f7a10 Code cleanup, minor refactoring
cin
parents: 3
diff changeset
23 Cmp,
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
24 Eq,
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
25
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
26 MaxOp
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
27 }
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 1
diff changeset
28 }