No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IdentifierExpression.cs 385B

1234567891011121314151617
  1. namespace Unity.VisualScripting.Dependencies.NCalc
  2. {
  3. public class IdentifierExpression : LogicalExpression
  4. {
  5. public IdentifierExpression(string name)
  6. {
  7. Name = name;
  8. }
  9. public string Name { get; set; }
  10. public override void Accept(LogicalExpressionVisitor visitor)
  11. {
  12. visitor.Visit(this);
  13. }
  14. }
  15. }