using static Generator; public static class ParserGenerator { public static void Main() { Generate( "ParserGenerated.cs", "using System.Collections.Immutable;\n" + "using S = Lexer.S;", "public static partial class Parser {", "}", "Parser.", Types( Variant("Grammar", Case("ImmutableList", "Or"), Case("ImmutableList", "Sequence")), Variant("Fixity", Case("Closed"), Case("InfixLeftAssociative"), Case("InfixRightAssociative"), Case("InfixNonAssociative"), Case("Prefix"), Case("Postfix"), Case("Terminal")), Record("Operator", Field("string", "precedenceGroup"), Field("Fixity", "fixity"), Field("ImmutableList", "parts"), Field("ImmutableList", "holes")), Record("DAGNode", Field("ImmutableList", "infixLeftAssociative"), Field("ImmutableList", "infixRightAssociative"), Field("ImmutableList", "infixNonAssociative"), Field("ImmutableList", "prefix"), Field("ImmutableList", "postfix"), Field("ImmutableList", "closed"), Field("ImmutableList", "terminal"), Field("ImmutableList", "successorNodes")))); } }