chore: initial git load of code space

This commit is contained in:
Thom Lamb
2026-05-12 08:52:33 -05:00
parent 9abada692f
commit 5e467bcc9c
384 changed files with 65960 additions and 2 deletions
@@ -0,0 +1,22 @@
namespace Strata.SqlTools.Rules.Rule.Expression;
/// <summary>
/// Represents a binary rule expression with left and right operands.
/// </summary>
public interface IBinary : IVisitable
{
/// <summary>
/// Gets the left operand.
/// </summary>
public Expression Left { get; }
/// <summary>
/// Gets the right operand.
/// </summary>
public Expression Right { get; }
/// <summary>
/// Gets the type of rule expression.
/// </summary>
public Type Type { get; }
}