Method: Neovim::Remote::Message::Response#initialize

Defined in:
lib/neovim/remote.rb

#initialize(*args) ⇒ Response

Returns a new instance of Response.



79
80
81
82
83
84
85
# File 'lib/neovim/remote.rb', line 79

def initialize *args
  super
  e = @cont[ :error]
  if e and not Array === e then
    @cont[ :error] = [0, e]
  end
end