Commit 791d9995 authored by levente.meszaros's avatar levente.meszaros
Browse files

Follow syntax-sugar changes.

darcs-hash:1cf882d27a30889791bbbeca9bb8db9bba3f133d
parent c61762a4
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -27,12 +27,8 @@
;;;;;;;
;;; AST

(def function always-eq (o1 o2)
  (declare (ignore o1 o2))
  #t)

;; TODO: +void+ should be replaced by using (values) in user code (somewhat difficult)
(def (constant e :test always-eq) +void+ (lambda ()))
(def (constant e :test (lambda (o1 o2) (eq (type-of o1) (type-of o2)))) +void+ (lambda ()))

(def class* syntax-node ()
  ())