Kaba class Connection ed

...

Syntax ed

class Connection
    var buffer: owned![BinaryBuffer]
    var s: owned![Socket]

    # constructors
    func mut __init__()

    # functions
    func mut end_block()
    func mut send()
    func mut start_block(id: string)

Functions ed

func mut end_block()
...

func mut send()
...

func mut start_block(id: string)
...

Elements ed

var buffer: owned![BinaryBuffer]
...

var s: owned![Socket]
...