Mercurial > pub > Jint1
annotate Jint.Runtime/VM/OpCodes/Codes.cs @ 4:1ae5b10f7a10
Code cleanup, minor refactoring
author | cin |
---|---|
date | Sun, 27 Oct 2013 21:20:59 +0400 |
parents | aced2ae9957f |
children |
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 | 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 } |