Full implementation of netbeans protocol
This commit is contained in:
@@ -1,9 +1,12 @@
|
||||
var Types = require("types.js");
|
||||
var EventEmitter = require("EventEmitter");
|
||||
var Types = require("types");
|
||||
|
||||
//A controler owned buffer representation
|
||||
function Buffer (client, buffId) {
|
||||
"use strict";
|
||||
|
||||
EventEmitter.call(this);
|
||||
|
||||
var typeNum = 0; //WARNING : check if this should be unique to a buffer
|
||||
var serNum = 0; //WARNING : check if this should be unique to a buffer
|
||||
|
||||
@@ -174,4 +177,6 @@ function Buffer (client, buffId) {
|
||||
};
|
||||
}
|
||||
|
||||
Buffer.prototype = EventEmitter;
|
||||
|
||||
module.exports = Buffer;
|
||||
|
||||
Reference in New Issue
Block a user