Class: Lisp::Format::Directives::SExpression
- Defined in:
- lib/carat/lisp-format.rb
Overview
Represents the ~S (S-Expression) directive.
Instance Attribute Summary
Attributes inherited from Directive
Instance Method Summary collapse
-
#initialize(*args) ⇒ SExpression
constructor
Sets
inspect
totrue
in the argument list.
Methods inherited from Print
Methods inherited from Directive
Constructor Details
#initialize(*args) ⇒ SExpression
Sets inspect
to true
in the argument list.
632 633 634 |
# File 'lib/carat/lisp-format.rb', line 632 def initialize(*args) super(*args << true) end |