package.lisp (635B)
1 ;;; package.lisp -- package definition for slynk-macrostep.lisp 2 ;; 3 ;; Authors: Luís Oliveira <luismbo@gmail.com> 4 ;; Jon Oddie <j.j.oddie@gmail.com> 5 ;; João Távora <joaotavora@gmail.com> 6 ;; 7 ;; License: Public Domain 8 9 (defpackage slynk-macrostep 10 (:use #:cl #:slynk-api) 11 (:import-from slynk 12 #:*macroexpand-printer-bindings* 13 #:with-buffer-syntax 14 #:with-bindings 15 #:to-string 16 #:macroexpand-all 17 #:compiler-macroexpand-1 18 #:debug-on-slynk-error 19 #:defslyfun) 20 (:export #:macrostep-expand-1 21 #:macro-form-p)) 22