lib/furnace/ast.rb in furnace-0.3.0.beta2 vs lib/furnace/ast.rb in furnace-0.3.0.beta3
- old
+ new
@@ -6,13 +6,14 @@
# and its every parent, recursively.
# This is a design choice. It does create significant pressure on
# garbage collector, but completely eliminates all concurrency
# and aliasing problems.
#
- # See also {Node} and {Processor} for additional
+ # See also {Node}, {Processor} and {Sexp} for additional
# recommendations and design patterns.
module AST
end
require_relative "ast/node"
require_relative "ast/processor"
+ require_relative "ast/sexp"
end
\ No newline at end of file