3 Working with ASTs in code
This chapter covers
- Encoding ASTs (represented as ORDs) as values in code
- Using Node.js interactively to construct ASTs in code
- Interacting with an encoded AST
- Traversing encoded ASTs algorithmically
In the previous chapter, you learned what an abstract syntax tree (AST) is and how to represent one using an object-relation diagram (ORD). In this chapter, you’ll learn how to put this representation into code, as in-memory data, and how to work with that encoded AST: inspect it, alter it, and traverse it. These skills will form the basis of the Domain IDE’s codebase. You’ll probably also encounter these notions outside of this book.
3.1 Turning ASTs into code
In this section, you’ll learn how to turn ASTs, which are notated in the ORD style we introduced in chapter 2, into data that a computer can work with. As announced in chapter 1, we’re going to implement our Domain IDE in JavaScript, so we’ll turn the AST into a JavaScript value. This process is called encoding: the AST is turned into JavaScript code that produces a JavaScript value that faithfully represents the AST.