Open florence opened 5 years ago
In the program
#lang racket (require redex/reduction-semantics) (define-language L (n ::= 1)) (redex-check L n n)
I get the error n: unbound identifier pointing at what should be the binding occurence of n in the redex-check.
n: unbound identifier
n
redex-check
I would expect redex-check to behave more line define-term and give an error like:
define-term
n: illegal use of syntax value at phase 1: #<defined-term> in: n
pointing at the use of n
In the program
I get the error
n: unbound identifier
pointing at what should be the binding occurence ofn
in theredex-check
.I would expect
redex-check
to behave more linedefine-term
and give an error like:pointing at the use of
n