Skip to content
This repository has been archived by the owner on Nov 2, 2019. It is now read-only.

Commit

Permalink
Furnace::AST was moved into its own gem, `ast'.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Apr 1, 2013
1 parent ec73b9f commit 58d9e6c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 731 deletions.
8 changes: 4 additions & 4 deletions lib/furnace.rb
Expand Up @@ -2,23 +2,23 @@
# static analyzers--any programs which read, manipulate or transform
# other programs.
#
# Currently it provides four loosely coupled modules, each operating
# Currently it provides three loosely coupled modules, each operating
# upon a single kind of entity:
#
# * Abstract syntax trees: {AST}
# * Transformations: {Transform}
# * Parametric types: {Type}
# * Static single assignment representation: {SSA}
# * Transformations: {Transform}
#
# Additionally, a custom pretty printing module {AwesomePrinter} is
# provided which has built-in knowledge of {Type}s.
#
# See also the [AST gem](http://rubygems.org/gems/ast).
#
module Furnace
require "furnace/version"

require "furnace/awesome_printer"

require "furnace/ast"
require "furnace/type"
require "furnace/ssa"

Expand Down
217 changes: 0 additions & 217 deletions lib/furnace/ast/node.rb

This file was deleted.

0 comments on commit 58d9e6c

Please sign in to comment.