@@ -93,7 +93,7 @@ goog.structs.LinkedMap = function(opt_maxCount, opt_cache,
9393/**
9494 * Finds a node and updates it to be the most recently used.
9595 * @param {string } key The key of the node.
96- * @return {goog.structs.LinkedMap.Node_ } The node or null if not found.
96+ * @return {goog.structs.LinkedMap.Node_<string,VALUE> } The node or null if not found.
9797 * @private
9898 */
9999goog . structs . LinkedMap . prototype . findAndMoveToTop_ = function ( key ) {
@@ -211,7 +211,7 @@ goog.structs.LinkedMap.prototype.remove = function(key) {
211211/**
212212 * Removes a node from the {@code LinkedMap}. It can be overridden to do
213213 * further cleanup such as disposing of the node value.
214- * @param {!goog.structs.LinkedMap.Node_ } node The node to remove.
214+ * @param {!goog.structs.LinkedMap.Node_<string,VALUE> } node The node to remove.
215215 * @protected
216216 */
217217goog . structs . LinkedMap . prototype . removeNode = function ( node ) {
@@ -414,7 +414,7 @@ goog.structs.LinkedMap.prototype.every = function(f, opt_obj) {
414414 * the head of the list, otherwise they are appended to the tail. If there is a
415415 * maximum size, the list will be truncated if necessary.
416416 *
417- * @param {goog.structs.LinkedMap.Node_ } node The item to insert.
417+ * @param {goog.structs.LinkedMap.Node_<string,VALUE> } node The item to insert.
418418 * @private
419419 */
420420goog . structs . LinkedMap . prototype . insert_ = function ( node ) {
@@ -459,7 +459,7 @@ goog.structs.LinkedMap.prototype.truncate_ = function(count) {
459459/**
460460 * Removes the node from the LinkedMap if it is not the head, and returns
461461 * the node's value.
462- * @param {!goog.structs.LinkedMap.Node_ } node The item to remove.
462+ * @param {!goog.structs.LinkedMap.Node_<string,VALUE> } node The item to remove.
463463 * @return {VALUE } The value of the popped node.
464464 * @private
465465 */
@@ -488,14 +488,14 @@ goog.structs.LinkedMap.Node_ = function(key, value) {
488488
489489/**
490490 * The next node in the list.
491- * @type {!goog.structs.LinkedMap.Node_ }
491+ * @type {!goog.structs.LinkedMap.Node_<KEY,VALUE> }
492492 */
493493goog . structs . LinkedMap . Node_ . prototype . next ;
494494
495495
496496/**
497497 * The previous node in the list.
498- * @type {!goog.structs.LinkedMap.Node_ }
498+ * @type {!goog.structs.LinkedMap.Node_<KEY,VALUE> }
499499 */
500500goog . structs . LinkedMap . Node_ . prototype . prev ;
501501
0 commit comments