show/hide this revision's text 2 added 484 characters in body

Why don't you keep a hash (a JavaScript {} object) with the code as the key and the function as the value? Then, for small pieces of code you could use an anonymous function, and for bigger pieces of code you could just have a reference to an already written function. I don't know anything about IRC, but here's a small example:

var CodeHash = {
    'someCode': function() { /* Do something... */ },
    'someOtherCode': BigImportantObject.someOtherCodeFunc()
}

Kind of a bad example, but you get the idea.

EDIT: If you believe that you can maintain such a long switch statement easily and without problems, then I think it's ridiculous to rewrite your program just to remove the switch. But I know that I, personally, would much rather maintain a hash table like above than a huge switch statement, for many reasons. So it's up to you. Seems like a rhetorical question if you keep insisting that the only reason you'd rewrite your code is to get rid of the switch statement.

show/hide this revision's text 1

Why don't you keep a hash (a JavaScript {} object) with the code as the key and the function as the value? Then, for small pieces of code you could use an anonymous function, and for bigger pieces of code you could just have a reference to an already written function. I don't know anything about IRC, but here's a small example:

var CodeHash = {
    'someCode': function() { /* Do something... */ },
    'someOtherCode': BigImportantObject.someOtherCodeFunc()
}

Kind of a bad example, but you get the idea.