()
| 67 | } |
| 68 | |
| 69 | func (prop *Property) AsInt() int { |
| 70 | if prop.data == nil { |
| 71 | prop.data = 0 |
| 72 | } |
| 73 | return int(prop.data.(float64)) |
| 74 | } |
| 75 | |
| 76 | func (prop *Property) AsMap() map[string]interface{} { |
| 77 | if prop.data == nil { |
no outgoing calls
no test coverage detected