(ivalue)
| 18945 | return null; |
| 18946 | } |
| 18947 | parseIValue(ivalue) { |
| 18948 | if (ivalue.val) { |
| 18949 | const callback = this._ivalue_parsers.get(ivalue.val.constructor); |
| 18950 | return callback(ivalue); |
| 18951 | } |
| 18952 | return null; |
| 18953 | } |
| 18954 | parseTensor(ivalue) { |
| 18955 | return this.parseTensorFromMetadata(ivalue.val); |
| 18956 | } |