Class: SOURCE-FILE-PART

Documentation

A part of a source file. Can be code, comment, heading, etc..

Slots

  • START-POSITION
  • END-POSITION
  • TEXT
  • ORIGIN-FILE
  • OUTPUT-FILE

Hierachy

Precedence List

  • STANDARD-OBJECT

Sub Classes

Source

(defclass source-file-part ()
  ((start-position :accessor start-position :initform nil :initarg :start-position)
   (end-position :accessor end-position :initform nil :initarg :end-position)
   (text :accessor text :initform nil :initarg :text)
   (origin-file :accessor origin-file :initform nil :initarg :origin-file)
   (output-file :accessor output-file :initform nil))
  (:documentation "A part of a source file. 
Can be code, comment, heading, etc.."))
Source Context