File size: 4,227 Bytes
3076276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{"macro_name":"MATCH","library":"cl-pattern","call_form":"(match)","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO MATCH:\n  too few elements in\n    ()\n  to satisfy lambda list\n    (ARG &BODY CLAUSES):\n  at least 1 expected, but got 0"}
{"macro_name":"MATCH","library":"cl-pattern","call_form":"(match nil)","expanded":"(match* (nil))","status":"verified"}
{"macro_name":"MATCH","library":"cl-pattern","call_form":"(match nil\n  nil)","expanded":"(match* (nil)\n  ((nil)))","status":"verified"}
{"macro_name":"MATCH","library":"cl-pattern","call_form":"(match nil\n  (progn))","expanded":"(match* (nil)\n  ((progn)))","status":"verified"}
{"macro_name":"MATCH","library":"cl-pattern","call_form":"(match nil\n  :key\n  nil)","expanded":"","status":"expansion-error","error":"The value\n  :KEY\nis not of type\n  LIST"}
{"macro_name":"MATCH","library":"cl-pattern","call_form":"(match 'lol-gen::some-name)","expanded":"(match* ('lol-gen::some-name))","status":"verified"}
{"macro_name":"DEFINE-CONDITION","library":"cl-pattern","call_form":"(define-condition)","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO DEFINE-CONDITION:\n  too few elements in\n    ()\n  to satisfy lambda list\n    (NAME (&REST PARENT-TYPES) (&REST SLOT-SPECS) &BODY OPTIONS):\n  at least 3 expected, but got 0"}
{"macro_name":"DEFINE-CONDITION","library":"cl-pattern","call_form":"(define-condition nil)","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO DEFINE-CONDITION:\n  too few elements in\n    (NIL)\n  to satisfy lambda list\n    (NAME (&REST PARENT-TYPES) (&REST SLOT-SPECS) &BODY OPTIONS):\n  at least 3 expected, but got 1"}
{"macro_name":"DEFINE-CONDITION","library":"cl-pattern","call_form":"(define-condition nil\n    nil)","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO DEFINE-CONDITION:\n  too few elements in\n    (NIL NIL)\n  to satisfy lambda list\n    (NAME (&REST PARENT-TYPES) (&REST SLOT-SPECS) &BODY OPTIONS):\n  at least 3 expected, but got 2"}
{"macro_name":"DEFINE-CONDITION","library":"cl-pattern","call_form":"(define-condition nil\n    (progn))","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO DEFINE-CONDITION:\n  too few elements in\n    (NIL (PROGN))\n  to satisfy lambda list\n    (NAME (&REST PARENT-TYPES) (&REST SLOT-SPECS) &BODY OPTIONS):\n  at least 3 expected, but got 2"}
{"macro_name":"DEFINE-CONDITION","library":"cl-pattern","call_form":"(define-condition nil\n    :key\n    nil)","expanded":"","status":"expansion-error","error":"The value\n  :KEY\nis not of type\n  LIST"}
{"macro_name":"DEFINE-CONDITION","library":"cl-pattern","call_form":"(define-condition 'lol-gen::some-name)","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO DEFINE-CONDITION:\n  too few elements in\n    ('LOL-GEN::SOME-NAME)\n  to satisfy lambda list\n    (NAME (&REST PARENT-TYPES) (&REST SLOT-SPECS) &BODY OPTIONS):\n  at least 3 expected, but got 1"}
{"macro_name":"LAMBDA-MATCH","library":"cl-pattern","call_form":"(lambda-match)","expanded":"(lambda (#:arg148) (match #:arg148))","status":"verified"}
{"macro_name":"LAMBDA-MATCH","library":"cl-pattern","call_form":"(lambda-match\n  nil)","expanded":"(lambda (#:arg149)\n  (match #:arg149\n    nil))","status":"verified"}
{"macro_name":"LAMBDA-MATCH","library":"cl-pattern","call_form":"(lambda-match\n  nil\n  nil)","expanded":"(lambda (#:arg150)\n  (match #:arg150\n    nil\n    nil))","status":"verified"}
{"macro_name":"LAMBDA-MATCH","library":"cl-pattern","call_form":"(lambda-match\n  nil\n  (progn))","expanded":"(lambda (#:arg151)\n  (match #:arg151\n    nil\n    (progn)))","status":"verified"}
{"macro_name":"LAMBDA-MATCH","library":"cl-pattern","call_form":"(lambda-match\n  nil\n  :key\n  nil)","expanded":"(lambda (#:arg152)\n  (match #:arg152\n    nil\n    :key\n    nil))","status":"verified"}
{"macro_name":"LAMBDA-MATCH","library":"cl-pattern","call_form":"(lambda-match\n  'lol-gen::some-name)","expanded":"(lambda (#:arg153)\n  (match #:arg153\n    'lol-gen::some-name))","status":"verified"}