class JpStringsFinder::RubyFinder::RipperCustom

Attributes

strings[R]

Public Class Methods

new(src) click to toggle source
Calls superclass method
# File lib/jp_strings_finder/ruby_finder.rb, line 8
def initialize(src)
  super(src)
  @strings = []
end

Public Instance Methods

on_tstring_content(str) click to toggle source
# File lib/jp_strings_finder/ruby_finder.rb, line 13
def on_tstring_content(str)
  @strings << str
end