()
| 1088 | return false |
| 1089 | } |
| 1090 | func (m *IdentityNode) Bool() bool { |
| 1091 | val := strings.ToLower(m.Text) |
| 1092 | if val == "true" { |
| 1093 | return true |
| 1094 | } |
| 1095 | return false |
| 1096 | } |
| 1097 | func (m *IdentityNode) Equal(n Node) bool { |
| 1098 | if m == nil && n == nil { |
| 1099 | return true |
no outgoing calls
no test coverage detected