Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DummyExpressionFingerprint.cs « Test « ExpressionUtil « System.Web.Mvc.Test « test - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d7231eddf47639f835d0b4c596ca37d068c9d7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Linq.Expressions;

namespace System.Web.Mvc.ExpressionUtil.Test
{
    // Represents an ExpressionFingerprint that is of the wrong type.
    internal sealed class DummyExpressionFingerprint : ExpressionFingerprint
    {
        public DummyExpressionFingerprint(ExpressionType nodeType, Type type)
            : base(nodeType, type)
        {
        }
    }
}