japji/resources/public/js/cljs-runtime/goog.structs.node.js
2025-09-01 12:49:14 +01:00

17 lines
428 B
JavaScript

goog.provide("goog.structs.Node");
goog.structs.Node = function(key, value) {
this.key_ = key;
this.value_ = value;
};
goog.structs.Node.prototype.getKey = function() {
return this.key_;
};
goog.structs.Node.prototype.getValue = function() {
return this.value_;
};
goog.structs.Node.prototype.clone = function() {
return new goog.structs.Node(this.key_, this.value_);
};
//# sourceMappingURL=goog.structs.node.js.map