GUAC-791: Add missing private tags to inner variables/functions.

This commit is contained in:
Michael Jumper
2015-12-14 14:26:19 -08:00
parent 4554c64bb7
commit 7cdfd146ef
8 changed files with 89 additions and 33 deletions

View File

@@ -48,13 +48,16 @@ Guacamole.StringReader = function(stream) {
/**
* The number of bytes remaining for the current codepoint.
*
*
* @private
* @type {Number}
*/
var bytes_remaining = 0;
/**
* The current codepoint value, as calculated from bytes read so far.
*
* @private
* @type {Number}
*/
var codepoint = 0;