()
| 1081 | return fmt.Errorf("unrecognized identity") |
| 1082 | } |
| 1083 | func (m *IdentityNode) IsBooleanIdentity() bool { |
| 1084 | val := strings.ToLower(m.Text) |
| 1085 | if val == "true" || val == "false" { |
| 1086 | return true |
| 1087 | } |
| 1088 | return false |
| 1089 | } |
| 1090 | func (m *IdentityNode) Bool() bool { |
| 1091 | val := strings.ToLower(m.Text) |
| 1092 | if val == "true" { |
no outgoing calls
no test coverage detected