| 227 | } |
| 228 | |
| 229 | void WriteTSOp(const OpDef& op_def, const ApiDef& api_def, WritableFile* ts) { |
| 230 | GenTypeScriptOp ts_op(op_def, api_def); |
| 231 | TF_CHECK_OK(ts->Append(GenTypeScriptOp(op_def, api_def).Code())); |
| 232 | } |
| 233 | |
| 234 | void StartFile(WritableFile* ts_file) { |
| 235 | const string header = |
no test coverage detected