Method: Metamorpher::Builders::AST::LiteralBuilder#method_missing

Defined in:
lib/metamorpher/builders/ast/literal_builder.rb

#method_missing(method, *arguments, &block) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/metamorpher/builders/ast/literal_builder.rb', line 15

def method_missing(method, *arguments, &block)
  if shorthand?(method, *arguments, &block)
    literal!(method, *arguments)
  else
    super.method_missing(method, *arguments, &block)
  end
end