17 lines
328 B
C#
17 lines
328 B
C#
namespace Upsilon.Binder
|
|
{
|
|
public enum BoundKind
|
|
{
|
|
BoundScript,
|
|
|
|
BoundLiteralExpression,
|
|
BoundBinaryExpression,
|
|
BoundUnaryExpression,
|
|
VariableExpression,
|
|
|
|
// Statements
|
|
BoundAssignmentStatement,
|
|
BoundExpressionStatement,
|
|
BoundBlockStatement
|
|
}
|
|
} |