Rename visitor, add note

This commit is contained in:
greg 2019-07-27 02:49:43 -07:00
parent be2dcb5301
commit 42bc4f091c
2 changed files with 2 additions and 1 deletions

View File

@ -62,6 +62,7 @@ of learning how to write a programming language.
### General
http://thume.ca/2019/04/18/writing-a-compiler-in-rust/
http://thume.ca/2019/07/14/a-tour-of-metaprogramming-models-for-generics/
### Type-checking
https://skillsmatter.com/skillscasts/10868-inside-the-rust-compiler

View File

@ -1,4 +1,4 @@
pub trait Visitor {
pub trait ASTVisitor {
}