annotate Jint.Runtime/VM/OperationDelegates.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:
diff changeset
1 using System;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
diff changeset
2 using System.Collections.Generic;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
diff changeset
3 using System.Linq;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
diff changeset
4 using System.Text;
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
diff changeset
5
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
diff changeset
6 namespace Jint.Runtime.VM {
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
diff changeset
7 public delegate T BinaryOperation<T>(T arg1, T arg2);
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
diff changeset
8 public delegate T UnaryOperation<T>(T arg);
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
diff changeset
9 public delegate int CompareOperation<T>(T arg1, T arg2);
4
1ae5b10f7a10 Code cleanup, minor refactoring
cin
parents: 3
diff changeset
10 public delegate bool EqualityOperation<T>(T arg1, T arg2);
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
diff changeset
11 }