File: Microsoft\CSharp\RuntimeBinder\Semantics\Tree\LocalVariable.cs | Web Access |
Project: src\src\libraries\Microsoft.CSharp\src\Microsoft.CSharp.csproj (Microsoft.CSharp) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics; namespace Microsoft.CSharp.RuntimeBinder.Semantics { internal sealed class ExprLocal : Expr { public ExprLocal(LocalVariableSymbol local) : base(ExpressionKind.Local) { Flags = EXPRFLAG.EXF_LVALUE; Local = local; Type = local?.GetType(); } public LocalVariableSymbol Local { get; } } } |