namespace AspClassic.Parser; /// /// A parse tree for a CType expression. /// public sealed class TryCastExpression : CastTypeExpression { /// /// Constructs a new parse tree for a TryCast expression. /// /// The location of the '('. /// The expression to be converted. /// The location of the ','. /// The target type of the conversion. /// The location of the ')'. /// The location of the parse tree. public TryCastExpression(Location leftParenthesisLocation, Expression operand, Location commaLocation, TypeName target, Location rightParenthesisLocation, Span span) : base(TreeType.TryCastExpression, leftParenthesisLocation, operand, commaLocation, target, rightParenthesisLocation, span) { } }