public void VisitLet(Let node)
 {
     _symbols.Define(new LetSymbol(node.Name));
     Visit(node.Expr);
 }