class SexpInterpreter
A simple subclass of SexpProcessor that defines a pattern I commonly use: non-mutative and strict process that return assorted values; AKA, an interpreter.
Public Class Methods
new()
click to toggle source
Calls superclass method
SexpProcessor.new
# File lib/sexp_processor.rb, line 431 def initialize super self.expected = Object self.require_empty = false self.strict = true end