;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package :hu.dwim.projectional-editor) ;;;;;; ;;; Inliner projection (def class* projection/inliner (projection) ()) (def (function e) make-projection/inliner () (make-instance 'projection/inliner)) ;;;;;; ;;; Inliner form printer (def method project-document (walked-lisp-form-document (projection projection/inliner)) (not-yet-implemented))