Class: SerializableProc::Parsers::Dynamic

Inherits:
Base
  • Object
show all
Defined in:
lib/serializable_proc/parsers/dynamic.rb

Class Method Summary collapse

Methods inherited from Base

sexp_derivatives

Class Method Details

.process(block) ⇒ Object



5
6
7
8
9
# File 'lib/serializable_proc/parsers/dynamic.rb', line 5

def process(block)
  if Object.const_defined?(:ParseTree)
    sexp_derivatives(block.to_sexp)
  end
end