Method: GetText::RubyParser::POExtractor#on_default

Defined in:
lib/gettext/tools/parser/ruby.rb

#on_default(event, token, po) ⇒ Object



268
269
270
271
272
273
274
275
276
277
# File 'lib/gettext/tools/parser/ruby.rb', line 268

def on_default(event, token, po)
  trace(event, token) do
    process_method = "process_#{event}"
    if respond_to?(process_method)
      __send__(process_method, token, po)
    else
      po
    end
  end
end