Class: Unifier

Inherits:
CompositeSexpProcessor
  • Object
show all
Defined in:
lib/parsetree/lib/unified_ruby.rb

Overview

Quick and easy SexpProcessor that unified the sexp structure.

Instance Method Summary collapse

Constructor Details

#initializeUnifier

Returns a new instance of Unifier.



416
417
418
419
420
# File 'lib/parsetree/lib/unified_ruby.rb', line 416

def initialize
  super
  self << PreUnifier.new
  self << PostUnifier.new
end