Mercurial > pub > Jint1
comparison Jint.Runtime/VM/OperationDelegates.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 | |
children | 1ae5b10f7a10 |
comparison
equal
deleted
inserted
replaced
2:4aed85a1f558 | 3:aced2ae9957f |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 | |
6 namespace Jint.Runtime.VM { | |
7 public delegate T BinaryOperation<T>(T arg1, T arg2); | |
8 public delegate T UnaryOperation<T>(T arg); | |
9 public delegate int CompareOperation<T>(T arg1, T arg2); | |
10 public delegate bool EqualsOperation<T>(T arg1, T arg2); | |
11 } |