ruby_parser
Advanced tools
+6
-0
@@ -0,1 +1,7 @@ | ||
| === 3.7.2 / 2015-10-26 | ||
| * 1 bug fix: | ||
| * I hate regexen. Fixed a lexing bug confusing strings vs labels. (phiggins) | ||
| === 3.7.1 / 2015-08-06 | ||
@@ -2,0 +8,0 @@ |
@@ -671,6 +671,6 @@ # encoding: UTF-8 | ||
| def process_label_or_string text | ||
| if @was_label && text =~ /:$/ then | ||
| if @was_label && text =~ /:\Z/ then | ||
| @was_label = nil | ||
| return process_label text | ||
| elsif text =~ /:$/ then | ||
| elsif text =~ /:\Z/ then | ||
| ss.pos -= 1 # put back ":" | ||
@@ -677,0 +677,0 @@ text = text[0..-2] |
@@ -94,3 +94,3 @@ # encoding: ASCII-8BIT | ||
| module RubyParserStuff | ||
| VERSION = "3.7.1" unless constants.include? "VERSION" # SIGH | ||
| VERSION = "3.7.2" unless constants.include? "VERSION" # SIGH | ||
@@ -97,0 +97,0 @@ attr_accessor :lexer, :in_def, :in_single, :file |
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 too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display