(p)
| 1583 | tensorflow.FunctionDefLibrary = (function() { |
| 1584 | |
| 1585 | function FunctionDefLibrary(p) { |
| 1586 | this["function"] = []; |
| 1587 | this.gradient = []; |
| 1588 | if (p) |
| 1589 | for (var ks = Object.keys(p), i = 0; i < ks.length; ++i) |
| 1590 | if (p[ks[i]] != null) |
| 1591 | this[ks[i]] = p[ks[i]]; |
| 1592 | } |
| 1593 | |
| 1594 | FunctionDefLibrary.prototype["function"] = $util.emptyArray; |
| 1595 | FunctionDefLibrary.prototype.gradient = $util.emptyArray; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…