()
| 60 | } |
| 61 | |
| 62 | func (prop *Property) AsFloat() float64 { |
| 63 | if prop.data == nil { |
| 64 | prop.data = 0.0 |
| 65 | } |
| 66 | return prop.data.(float64) |
| 67 | } |
| 68 | |
| 69 | func (prop *Property) AsInt() int { |
| 70 | if prop.data == nil { |
no outgoing calls
no test coverage detected