Procházet zdrojové kódy

Merge pull request #162 from DarshalShetty/fix-interp-Lvar-class

Fix parens around "super"
Jeremy G. Siek před 1 rokem
rodič
revize
bd1e98a05c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      book.tex

+ 1 - 1
book.tex

@@ -2139,7 +2139,7 @@ inherits from the class for \LangInt{}, and the method
          (define env^ (dict-set env x v))
          ((interp_exp env^) body)]
         [else
-         (super (interp_exp env) e)]))
+         ((super interp_exp env) e)]))
     ...
   ))
 \end{lstlisting}