I am creating a parser for a language similar to C#, and decided that a combination of top-down and bottom-up would be best. Basically, I would like to use top-down parsing everywhere except individual statements. The reason for this is order of operations- its a lot easier to implement them with a bottom up, and it is a lot easier to implement everything else with a top-down parser.I am creating a parser for a language similar t