using System; // This file was generated by Generator.cs namespace Ast { /* To match against an instance of Expr, write: x.Match( Int: value => throw new NotImplementedYetException(),, String: value => throw new NotImplementedYetException(), ) */ public abstract class Expr { public abstract T Match_(Visitor c); public static Expr Int(int value) => new Int(value); public static Expr String(string value) => new String(value); public virtual Immutable.Option AsInt() => Immutable.Option.None(); public virtual Immutable.Option AsString() => Immutable.Option.None(); private string GetTag() { return this.Match( Int: value => "Int", String: value => "String" ); } } public partial class Visitor { public Func Int { get; set; } } public sealed class Int : Expr { public readonly int value; public Int(int value) { this.value = value; } public override T Match_(Visitor c) => c.Int(value); public override Immutable.Option AsInt() => Immutable.Option.Some(this); public override bool Equals(object other) { var cast = other as Int; if (Object.ReferenceEquals(cast, null)) { return false; } else { return Equality.Field(this, cast, x => x.value, (x, y) => ((Object)x).Equals(y)); } } public override int GetHashCode() { return HashCode.Combine("Int", this.value); } } public partial class Visitor { public Func String { get; set; } } public sealed class String : Expr { public readonly string value; public String(string value) { this.value = value; } public override T Match_(Visitor c) => c.String(value); public override Immutable.Option AsString() => Immutable.Option.Some(this); public override bool Equals(object other) { var cast = other as String; if (Object.ReferenceEquals(cast, null)) { return false; } else { return Equality.Field(this, cast, x => x.value, (x, y) => ((Object)x).Equals(y)); } } public override int GetHashCode() { return HashCode.Combine("String", this.value); } } } public static class ExprExtensionMethods { public static T Match( this Ast.Expr e, Func Int, Func String ) { return e.Match_(new Ast.Visitor { Int = Int, String = String }); } }