cl-ds / data /generated /cl-markup_generated.jsonl
j14i's picture
3375 CL macro transformation examples from 85 libraries
43203b4 verified
{"macro_name":"XHTML","library":"cl-markup","call_form":"(xhtml)","expanded":"(with-doctype :xhtml\n (tag->string (cons :html 'nil)))","status":"verified"}
{"macro_name":"XHTML","library":"cl-markup","call_form":"(xhtml nil)","expanded":"(with-doctype :xhtml\n (tag->string (cons :html '(nil))))","status":"verified"}
{"macro_name":"XHTML","library":"cl-markup","call_form":"(xhtml nil nil)","expanded":"(with-doctype :xhtml\n (tag->string (cons :html '(nil nil))))","status":"verified"}
{"macro_name":"XHTML","library":"cl-markup","call_form":"(xhtml nil (progn))","expanded":"(with-doctype :xhtml\n (tag->string (cons :html '(nil (progn)))))","status":"verified"}
{"macro_name":"XHTML","library":"cl-markup","call_form":"(xhtml nil :key nil)","expanded":"(with-doctype :xhtml\n (tag->string (cons :html '(nil :key nil))))","status":"verified"}
{"macro_name":"XHTML","library":"cl-markup","call_form":"(xhtml 'lol-gen::some-name)","expanded":"(with-doctype :xhtml\n (tag->string (cons :html '('lol-gen::some-name))))","status":"verified"}
{"macro_name":"ESC","library":"cl-markup","call_form":"(esc)","expanded":"(list)","status":"verified"}
{"macro_name":"ESC","library":"cl-markup","call_form":"(esc nil)","expanded":"(list (escape-string nil))","status":"verified"}
{"macro_name":"ESC","library":"cl-markup","call_form":"(esc nil nil)","expanded":"(list (escape-string nil) (escape-string nil))","status":"verified"}
{"macro_name":"ESC","library":"cl-markup","call_form":"(esc nil (progn))","expanded":"(list (escape-string nil) (escape-string (progn)))","status":"verified"}
{"macro_name":"ESC","library":"cl-markup","call_form":"(esc nil :key nil)","expanded":"(list (escape-string nil) (escape-string :key) (escape-string nil))","status":"verified"}
{"macro_name":"ESC","library":"cl-markup","call_form":"(esc 'lol-gen::some-name)","expanded":"(list (escape-string 'lol-gen::some-name))","status":"verified"}
{"macro_name":"XML","library":"cl-markup","call_form":"(xml)","expanded":"(with-doctype :xml\n (loop for tag in 'nil\n append (tag->string tag)))","status":"verified"}
{"macro_name":"XML","library":"cl-markup","call_form":"(xml nil)","expanded":"(with-doctype :xml\n (loop for tag in '(nil)\n append (tag->string tag)))","status":"verified"}
{"macro_name":"XML","library":"cl-markup","call_form":"(xml nil nil)","expanded":"(with-doctype :xml\n (loop for tag in '(nil nil)\n append (tag->string tag)))","status":"verified"}
{"macro_name":"XML","library":"cl-markup","call_form":"(xml nil (progn))","expanded":"(with-doctype :xml\n (loop for tag in '(nil (progn))\n append (tag->string tag)))","status":"verified"}
{"macro_name":"XML","library":"cl-markup","call_form":"(xml nil :key nil)","expanded":"(with-doctype :xml\n (loop for tag in '(nil :key nil)\n append (tag->string tag)))","status":"verified"}
{"macro_name":"XML","library":"cl-markup","call_form":"(xml 'lol-gen::some-name)","expanded":"(with-doctype :xml\n (loop for tag in '('lol-gen::some-name)\n append (tag->string tag)))","status":"verified"}
{"macro_name":"MARKUP","library":"cl-markup","call_form":"(markup)","expanded":"(%write-strings)","status":"verified"}
{"macro_name":"MARKUP","library":"cl-markup","call_form":"(markup nil)","expanded":"(%write-strings #A((4) base-char . \"<nil\") \" />\")","status":"verified"}
{"macro_name":"MARKUP","library":"cl-markup","call_form":"(markup nil nil)","expanded":"(%write-strings #A((4) base-char . \"<nil\") \" />\" #A((4) base-char . \"<nil\")\n \" />\")","status":"verified"}
{"macro_name":"MARKUP","library":"cl-markup","call_form":"(markup nil (progn))","expanded":"(%write-strings #A((4) base-char . \"<nil\") \" />\" #A((6) base-char . \"<progn\")\n \" />\")","status":"verified"}
{"macro_name":"MARKUP","library":"cl-markup","call_form":"(markup nil :key nil)","expanded":"","status":"expansion-error","error":"The value\n :KEY\nis not of type\n LIST"}
{"macro_name":"MARKUP","library":"cl-markup","call_form":"(markup 'lol-gen::some-name)","expanded":"(%write-strings #A((6) base-char . \"<quote\") \">\"\n (escape-string (ensure-string lol-gen::some-name))\n #A((8) base-char . \"</quote>\"))","status":"verified"}
{"macro_name":"ENABLE-MARKUP-SYNTAX","library":"cl-markup","call_form":"(enable-markup-syntax)","expanded":"(eval-when (:compile-toplevel :load-toplevel :execute) (%enable-markup-syntax))","status":"verified"}
{"macro_name":"ENABLE-MARKUP-SYNTAX","library":"cl-markup","call_form":"(enable-markup-syntax nil)","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO ENABLE-MARKUP-SYNTAX:\n too many elements in\n (NIL)\n to satisfy lambda list\n ():\n exactly 0 expected, but got 1"}
{"macro_name":"ENABLE-MARKUP-SYNTAX","library":"cl-markup","call_form":"(enable-markup-syntax nil nil)","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO ENABLE-MARKUP-SYNTAX:\n too many elements in\n (NIL NIL)\n to satisfy lambda list\n ():\n exactly 0 expected, but got 2"}
{"macro_name":"ENABLE-MARKUP-SYNTAX","library":"cl-markup","call_form":"(enable-markup-syntax nil (progn))","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO ENABLE-MARKUP-SYNTAX:\n too many elements in\n (NIL (PROGN))\n to satisfy lambda list\n ():\n exactly 0 expected, but got 2"}
{"macro_name":"ENABLE-MARKUP-SYNTAX","library":"cl-markup","call_form":"(enable-markup-syntax nil :key nil)","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO ENABLE-MARKUP-SYNTAX:\n too many elements in\n (NIL :KEY NIL)\n to satisfy lambda list\n ():\n exactly 0 expected, but got 3"}
{"macro_name":"ENABLE-MARKUP-SYNTAX","library":"cl-markup","call_form":"(enable-markup-syntax 'lol-gen::some-name)","expanded":"","status":"expansion-error","error":"Error while parsing arguments to DEFMACRO ENABLE-MARKUP-SYNTAX:\n too many elements in\n ('LOL-GEN::SOME-NAME)\n to satisfy lambda list\n ():\n exactly 0 expected, but got 1"}
{"macro_name":"HTML","library":"cl-markup","call_form":"(html)","expanded":"(with-doctype :html\n (tag->string (cons :html 'nil)))","status":"verified"}
{"macro_name":"HTML","library":"cl-markup","call_form":"(html nil)","expanded":"(with-doctype :html\n (tag->string (cons :html '(nil))))","status":"verified"}
{"macro_name":"HTML","library":"cl-markup","call_form":"(html nil nil)","expanded":"(with-doctype :html\n (tag->string (cons :html '(nil nil))))","status":"verified"}
{"macro_name":"HTML","library":"cl-markup","call_form":"(html nil (progn))","expanded":"(with-doctype :html\n (tag->string (cons :html '(nil (progn)))))","status":"verified"}
{"macro_name":"HTML","library":"cl-markup","call_form":"(html nil :key nil)","expanded":"(with-doctype :html\n (tag->string (cons :html '(nil :key nil))))","status":"verified"}
{"macro_name":"HTML","library":"cl-markup","call_form":"(html 'lol-gen::some-name)","expanded":"(with-doctype :html\n (tag->string (cons :html '('lol-gen::some-name))))","status":"verified"}
{"macro_name":"RAW","library":"cl-markup","call_form":"(raw)","expanded":"(list)","status":"verified"}
{"macro_name":"RAW","library":"cl-markup","call_form":"(raw nil)","expanded":"(list nil)","status":"verified"}
{"macro_name":"RAW","library":"cl-markup","call_form":"(raw nil nil)","expanded":"(list nil nil)","status":"verified"}
{"macro_name":"RAW","library":"cl-markup","call_form":"(raw nil (progn))","expanded":"(list nil (progn))","status":"verified"}
{"macro_name":"RAW","library":"cl-markup","call_form":"(raw nil :key nil)","expanded":"(list nil :key nil)","status":"verified"}
{"macro_name":"RAW","library":"cl-markup","call_form":"(raw 'lol-gen::some-name)","expanded":"(list 'lol-gen::some-name)","status":"verified"}
{"macro_name":"HTML5","library":"cl-markup","call_form":"(html5)","expanded":"(with-doctype :html5\n (tag->string (cons :html 'nil)))","status":"verified"}
{"macro_name":"HTML5","library":"cl-markup","call_form":"(html5 nil)","expanded":"(with-doctype :html5\n (tag->string (cons :html '(nil))))","status":"verified"}
{"macro_name":"HTML5","library":"cl-markup","call_form":"(html5 nil nil)","expanded":"(with-doctype :html5\n (tag->string (cons :html '(nil nil))))","status":"verified"}
{"macro_name":"HTML5","library":"cl-markup","call_form":"(html5 nil (progn))","expanded":"(with-doctype :html5\n (tag->string (cons :html '(nil (progn)))))","status":"verified"}
{"macro_name":"HTML5","library":"cl-markup","call_form":"(html5 nil :key nil)","expanded":"(with-doctype :html5\n (tag->string (cons :html '(nil :key nil))))","status":"verified"}
{"macro_name":"HTML5","library":"cl-markup","call_form":"(html5 'lol-gen::some-name)","expanded":"(with-doctype :html5\n (tag->string (cons :html '('lol-gen::some-name))))","status":"verified"}