forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstantExpressionFingerprint.cs
More file actions
35 lines (30 loc) · 1.45 KB
/
Copy pathConstantExpressionFingerprint.cs
File metadata and controls
35 lines (30 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Diagnostics.CodeAnalysis;
using System.Linq.Expressions;
#pragma warning disable 659 // overrides AddToHashCodeCombiner instead
namespace System.Web.Mvc.ExpressionUtil
{
// ConstantExpression fingerprint class
//
// A ConstantExpression might represent a captured local variable, so we can't compile
// the value directly into the cached function. Instead, a placeholder is generated
// and the value is hoisted into a local variables array. This placeholder can then
// be compiled and cached, and the array lookup happens at runtime.
[SuppressMessage("Microsoft.Usage", "CA2218:OverrideGetHashCodeOnOverridingEquals", Justification = "Overrides AddToHashCodeCombiner() instead.")]
internal sealed class ConstantExpressionFingerprint : ExpressionFingerprint
{
public ConstantExpressionFingerprint(ExpressionType nodeType, Type type)
: base(nodeType, type)
{
// There are no properties on ConstantExpression that are worth including in
// the fingerprint.
}
public override bool Equals(object obj)
{
ConstantExpressionFingerprint other = obj as ConstantExpressionFingerprint;
return (other != null)
&& this.Equals(other);
}
}
}