class DEBUGGER__::UI_CDP::WebSocketUtils::Frame
def << obj
def << obj case obj when String @b << obj.b when Enumerable obj.each{|e| self << e} end end
def char bytes
def char bytes @b << bytes end
def initialize
def initialize @b = ''.b end
def uint16 bytes
def uint16 bytes @b << [bytes].pack('n*') end
def ulonglong bytes
def ulonglong bytes @b << [bytes].pack('Q>') end