m2ym / cl-annot

Python-like Annotation Syntax for Common Lisp
128 stars 17 forks source link

feature request: exporting the restart name #18

Open guicho271828 opened 9 years ago

guicho271828 commented 9 years ago

Restarts are also the important part of API. please:

@export
(restart-bind ...
   )

@export
(restart-case ...
  (name () ...))

and also the `case,ecase, ccase' keys (less priority):

@export
(case (something)
  (key1 ...)
  (key2 ...))

well, I might have to use a keyword for the restart name.