(defpackage :parse
  (:use :cl)
  (:export
    *root-scope*
    *active-scope*
    scope-error
    scope
    scope-name
    parent
    grandparent
    great-grandparent
    errors
    empty-p
    has-errors-p
    add-error
    close-scope
    execute-command
    print-scope
    content-scope
    content
    append-content
    container-scope
    children
    open-child
    keyword-scope
    parse))
