rename reserved word char to c

This commit is contained in:
Philipp Borgers 2013-01-24 01:24:03 +01:00
parent cf6da99fca
commit 6527899526

View File

@ -28,8 +28,8 @@ ArrayParser.prototype.nextChar = function() {
};
}
};
ArrayParser.prototype.record = function(char) {
return this.recorded.push(char);
ArrayParser.prototype.record = function(c) {
return this.recorded.push(c);
};
ArrayParser.prototype.newEntry = function(includeEmpty) {
var entry;