furnace 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/furnace/ast/visitor.rb +17 -5
- data/lib/furnace/version.rb +1 -1
- metadata +2 -2
data/lib/furnace/ast/visitor.rb
CHANGED
@@ -1,19 +1,31 @@
|
|
1
1
|
module Furnace::AST
|
2
2
|
module Visitor
|
3
3
|
def visit(node)
|
4
|
-
|
4
|
+
replacements = {}
|
5
|
+
|
6
|
+
node.children.each_with_index do |child, index|
|
5
7
|
if child.is_a? Node
|
6
8
|
visit child
|
7
9
|
|
8
10
|
if child.type == :expand
|
9
|
-
|
11
|
+
replacements[index] = child.children
|
10
12
|
end
|
11
13
|
end
|
12
|
-
|
13
|
-
child
|
14
14
|
end
|
15
15
|
|
16
|
-
|
16
|
+
if replacements.any?
|
17
|
+
new_children = []
|
18
|
+
|
19
|
+
node.children.each_with_index do |child, index|
|
20
|
+
if replacements[index]
|
21
|
+
new_children.concat replacements[index]
|
22
|
+
else
|
23
|
+
new_children.push child
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
node.children.replace new_children
|
28
|
+
end
|
17
29
|
|
18
30
|
node.children.delete_if do |child|
|
19
31
|
if child.is_a? Node
|
data/lib/furnace/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: furnace
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-04-
|
12
|
+
date: 2012-04-19 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Furnace is a static code analysis framework for dynamic languages, aimed
|
15
15
|
at efficient type and behavior inference.
|