Method: Hatchet::NestedDiagnosticContext::ContextStack#push

Defined in:
lib/hatchet/nested_diagnostic_context.rb

#push(*values) ⇒ Object

Internal: Pushes the given messages onto the stack.

values - One or more messages to add to the context stack.

Returns nothing.



133
134
135
136
# File 'lib/hatchet/nested_diagnostic_context.rb', line 133

def push(*values)
  @stack.push(*values)
  nil
end