Sha256: 6ba928734947838f47fb9ddc488004e6f05c96c23c2556b7e2614bdfe377eb64
Contents?: true
Size: 425 Bytes
Versions: 40
Compression:
Stored size: 425 Bytes
Contents
jasmineRequire.ResultsNode = function() { function ResultsNode(result, type, parent) { this.result = result; this.type = type; this.parent = parent; this.children = []; this.addChild = function(result, type) { this.children.push(new ResultsNode(result, type, this)); }; this.last = function() { return this.children[this.children.length - 1]; }; } return ResultsNode; };
Version data entries
40 entries across 40 versions & 2 rubygems