13 lines
342 B
C#
13 lines
342 B
C#
namespace Upsilon.Binder
|
|
{
|
|
public class BoundReturnStatement : BoundStatement
|
|
{
|
|
public BoundReturnStatement(BoundExpression expression)
|
|
{
|
|
Expression = expression;
|
|
}
|
|
|
|
public BoundExpression Expression { get; }
|
|
public override BoundKind Kind => BoundKind.BoundReturnStatement;
|
|
}
|
|
} |