ruby_parser
Advanced tools
+10
-0
@@ -0,1 +1,11 @@ | ||
| === 3.4.1 / 2014-02-14 | ||
| * 1 minor enhancement: | ||
| * Added StackState#store and #restore. | ||
| * 1 bug fix: | ||
| * 1.8/1.9/2.0: Fixed tSTRING_DBEG w/ f'd up amounts of nesting + braces + do/end. yeah. I'm as confused as you are. | ||
| === 3.4.0 / 2014-02-04 | ||
@@ -2,0 +12,0 @@ |
@@ -94,3 +94,3 @@ # encoding: ASCII-8BIT | ||
| module RubyParserStuff | ||
| VERSION = "3.4.0" unless constants.include? "VERSION" # SIGH | ||
| VERSION = "3.4.1" unless constants.include? "VERSION" # SIGH | ||
@@ -1281,2 +1281,12 @@ attr_accessor :lexer, :in_def, :in_single, :file | ||
| end | ||
| def store | ||
| result = @stack.dup | ||
| @stack.replace [false] | ||
| result | ||
| end | ||
| def restore oldstate | ||
| @stack.replace oldstate | ||
| end | ||
| end | ||
@@ -1283,0 +1293,0 @@ end |
+1
-1
@@ -191,3 +191,3 @@ # -*- ruby -*- | ||
| file = ENV["F"] || ENV["FILE"] | ||
| sh "#{ruby20} -cwy #{file} 2>&1 | ./yuck.rb" | ||
| sh "/Users/ryan/Desktop/DVDs/debugparser/miniruby -cwy #{file} 2>&1 | ./yuck.rb" | ||
| end | ||
@@ -194,0 +194,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet