Files
Xune/UIX.Skia/Microsoft/Iris/Markup/Validation/ValidateExpressionAs.cs
T
2021-07-12 00:40:39 -05:00

48 lines
1.9 KiB
C#

// Decompiled with JetBrains decompiler
// Type: Microsoft.Iris.Markup.Validation.ValidateExpressionAs
// Assembly: UIX, Version=4.8.0.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217
// MVID: A56C6C9D-B7F6-46A9-8BDE-B3D9B8D60B11
// Assembly location: C:\Program Files\Zune\UIX.dll
namespace Microsoft.Iris.Markup.Validation
{
internal class ValidateExpressionAs : ValidateExpression
{
private ValidateExpression _expression;
private ValidateTypeIdentifier _typeIdentifier;
public ValidateExpressionAs(
SourceMarkupLoader owner,
ValidateExpression expression,
ValidateTypeIdentifier typeIdentifier,
int line,
int column)
: base(owner, line, column, ExpressionType.As)
{
_expression = expression;
_typeIdentifier = typeIdentifier;
}
public ValidateExpression Expression => _expression;
public ValidateTypeIdentifier TypeIdentifier => _typeIdentifier;
public override void Validate(TypeRestriction typeRestriction, ValidateContext context)
{
if (Usage == ExpressionUsage.LValue)
ReportError("Expression cannot be used as the target an assignment (related symbol: '{0}')", "As");
_expression.Validate(TypeRestriction.NotVoid, context);
if (_expression.HasErrors)
MarkHasErrors();
_typeIdentifier.Validate();
if (_typeIdentifier.HasErrors)
MarkHasErrors();
if (_typeIdentifier.FoundType != null && !_typeIdentifier.FoundType.IsNullAssignable)
ReportError("The {0} operator must be used with a reference type ('{1}' is not null assignable)", "as", _typeIdentifier.FoundType.Name);
if (_typeIdentifier.FoundType == null)
return;
DeclareEvaluationType(_typeIdentifier.FoundType, typeRestriction);
}
}
}