Created
November 21, 2019 18:28
-
-
Save jozefchmelar/59677f63ae6cec240fbd9c95bac243ab to your computer and use it in GitHub Desktop.
This code will traverse AST
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var root = parseTree.Root.AstNode as BaseAst; | |
var visitor = new HtmlConcreteVisitor(new StringBuilder()); | |
root.AcceptVisitor(visitor); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment