(typ *exprpb.Type)
| 164 | } |
| 165 | |
| 166 | func isDateType(typ *exprpb.Type) bool { |
| 167 | return typ.GetAbstractType() != nil && typ.GetAbstractType().GetName() == "DATE" |
| 168 | } |
| 169 | |
| 170 | func isTimeType(typ *exprpb.Type) bool { |
| 171 | return typ.GetAbstractType() != nil && typ.GetAbstractType().GetName() == "TIME" |
no outgoing calls
no test coverage detected