initTimestamp handles all casts that are built-in. This comprises only the source types.
(builtInCasts map[id.Cast]casts.Cast)
| 29 | |
| 30 | // initTimestamp handles all casts that are built-in. This comprises only the source types. |
| 31 | func initTimestamp(builtInCasts map[id.Cast]casts.Cast) { |
| 32 | timestampAssignment(builtInCasts) |
| 33 | timestampImplicit(builtInCasts) |
| 34 | } |
| 35 | |
| 36 | // timestampAssignment registers all assignment casts. This comprises only the source types. |
| 37 | func timestampAssignment(builtInCasts map[id.Cast]casts.Cast) { |
no test coverage detected