namespace AspClassic.Parser;
///
/// A parse tree for a DirectCast expression.
///
public sealed class DirectCastExpression : CastTypeExpression
{
///
/// Constructs a new parse tree for a DirectCast 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 DirectCastExpression(Location leftParenthesisLocation, Expression operand, Location commaLocation, TypeName target, Location rightParenthesisLocation, Span span)
: base(TreeType.DirectCastExpression, leftParenthesisLocation, operand, commaLocation, target, rightParenthesisLocation, span)
{
}
}