using System; // This file was generated by Generator.cs public static partial class Lexer { /* To match against an instance of S, write: x.Match( End: () => throw new NotImplementedYetException(),, Space: () => throw new NotImplementedYetException(),, Int: () => throw new NotImplementedYetException(),, Decimal: () => throw new NotImplementedYetException(),, String: () => throw new NotImplementedYetException(),, StringOpen: () => throw new NotImplementedYetException(),, StringClose: () => throw new NotImplementedYetException(), ) */ public abstract class S { public abstract T Match_(Visitor c); public static S End = new End(); public static S Space = new Space(); public static S Int = new Int(); public static S Decimal = new Decimal(); public static S String = new String(); public static S StringOpen = new StringOpen(); public static S StringClose = new StringClose(); public virtual Immutable.Option AsEnd() => Immutable.Option.None(); public virtual Immutable.Option AsSpace() => Immutable.Option.None(); public virtual Immutable.Option AsInt() => Immutable.Option.None(); public virtual Immutable.Option AsDecimal() => Immutable.Option.None(); public virtual Immutable.Option AsString() => Immutable.Option.None(); public virtual Immutable.Option AsStringOpen() => Immutable.Option.None(); public virtual Immutable.Option AsStringClose() => Immutable.Option.None(); private string GetTag() { return this.Match( End: () => "End", Space: () => "Space", Int: () => "Int", Decimal: () => "Decimal", String: () => "String", StringOpen: () => "StringOpen", StringClose: () => "StringClose" ); } } public partial class Visitor { public Func End { get; set; } } public sealed class End : S { public End() { } public override T Match_(Visitor c) => c.End(); public override Immutable.Option AsEnd() => Immutable.Option.Some(this); public override bool Equals(object other) { return (other is End); } public override int GetHashCode() { return "C".GetHashCode(); } } public partial class Visitor { public Func Space { get; set; } } public sealed class Space : S { public Space() { } public override T Match_(Visitor c) => c.Space(); public override Immutable.Option AsSpace() => Immutable.Option.Some(this); public override bool Equals(object other) { return (other is Space); } public override int GetHashCode() { return "C".GetHashCode(); } } public partial class Visitor { public Func Int { get; set; } } public sealed class Int : S { public Int() { } public override T Match_(Visitor c) => c.Int(); public override Immutable.Option AsInt() => Immutable.Option.Some(this); public override bool Equals(object other) { return (other is Int); } public override int GetHashCode() { return "C".GetHashCode(); } } public partial class Visitor { public Func Decimal { get; set; } } public sealed class Decimal : S { public Decimal() { } public override T Match_(Visitor c) => c.Decimal(); public override Immutable.Option AsDecimal() => Immutable.Option.Some(this); public override bool Equals(object other) { return (other is Decimal); } public override int GetHashCode() { return "C".GetHashCode(); } } public partial class Visitor { public Func String { get; set; } } public sealed class String : S { public String() { } public override T Match_(Visitor c) => c.String(); public override Immutable.Option AsString() => Immutable.Option.Some(this); public override bool Equals(object other) { return (other is String); } public override int GetHashCode() { return "C".GetHashCode(); } } public partial class Visitor { public Func StringOpen { get; set; } } public sealed class StringOpen : S { public StringOpen() { } public override T Match_(Visitor c) => c.StringOpen(); public override Immutable.Option AsStringOpen() => Immutable.Option.Some(this); public override bool Equals(object other) { return (other is StringOpen); } public override int GetHashCode() { return "C".GetHashCode(); } } public partial class Visitor { public Func StringClose { get; set; } } public sealed class StringClose : S { public StringClose() { } public override T Match_(Visitor c) => c.StringClose(); public override Immutable.Option AsStringClose() => Immutable.Option.Some(this); public override bool Equals(object other) { return (other is StringClose); } public override int GetHashCode() { return "C".GetHashCode(); } } } public static class SExtensionMethods { public static T Match( this Lexer.S e, Func End, Func Space, Func Int, Func Decimal, Func String, Func StringOpen, Func StringClose ) { return e.Match_(new Lexer.Visitor { End = End, Space = Space, Int = Int, Decimal = Decimal, String = String, StringOpen = StringOpen, StringClose = StringClose }); } }