rubinius-ast 3.1 → 3.2
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.
- checksums.yaml +4 -4
- data/lib/rubinius/code/ast/definitions.rb +0 -4
- data/lib/rubinius/code/ast/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d59ed449206fc1272a1f2bcef93c32a795c12eab
|
4
|
+
data.tar.gz: 4a14eb185f155aab1a3d45205aca2d797a1f1ad6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2e6c7abf59737613b1d7cf6bf0f5135fa2ff1ff9797d2e1a93c098192c1696e008e27a9733fef90a900a3e0d701655600b8011c99328092025774f4f8c7e59f
|
7
|
+
data.tar.gz: 2dc8f70121984a05221cfe4b0bc5e2cee284098a6e383b74262dbbe272f7ab6f8563be76af0937c19e8b1ac4793e50fa2aa927192032c5e8c268dac71208052d
|
@@ -90,16 +90,12 @@ module CodeTools
|
|
90
90
|
end
|
91
91
|
|
92
92
|
def bytecode(g)
|
93
|
-
g.state.push_block
|
94
|
-
|
95
93
|
count = @array.size - 1
|
96
94
|
@array.each_with_index do |x, i|
|
97
95
|
start_ip = g.ip
|
98
96
|
x.bytecode(g)
|
99
97
|
g.pop unless start_ip == g.ip or i == count
|
100
98
|
end
|
101
|
-
|
102
|
-
g.state.pop_block
|
103
99
|
end
|
104
100
|
|
105
101
|
def to_sexp
|