Skip to content

Commit

Permalink
Update todo
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Meyer committed Jun 3, 2015
1 parent 0bb0b7d commit a0cfe4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# TODO list

* Rename parser into wire command executor or evaluator or similiar
* Create "sub"-packages and try to move everything except the public interface into these packages
* Rename struct type argument into submatch or capturing_group or similar
* bufio usage Write vs WriteString etc
Expand Down
5 changes: 3 additions & 2 deletions parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ type wire_protocol_parser struct {

func (parser *wire_protocol_parser) parse(command []byte) string {

//cmd := parse_wire_command(command)
//response := cmd.execute()
//command_parser := &wire_command_parser{}
//cmd := command_parser.parse(command)
//response := cmd.execute(parser.steps)
//_ = response.encode()

raw_response := parser.parse_command(command)
Expand Down

0 comments on commit a0cfe4b

Please sign in to comment.