We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c1601a commit 6509ec5Copy full SHA for 6509ec5
2 files changed
lib/problematic_variable_finder.rb
@@ -5,6 +5,7 @@
5
6
require "problematic_variable_finder/runner"
7
require "problematic_variable_finder/main_finder"
8
+require "problematic_variable_finder/monkey_patches"
9
10
module ProblematicVariableFinder
11
class << self
lib/problematic_variable_finder/monkey_patches.rb
@@ -0,0 +1,6 @@
1
+class Parser::Builders::Default
2
+ # More details here https://github.com/whitequark/parser/issues/283
3
+ def string_value(token)
4
+ value(token)
+ end
+end
0 commit comments