()
| 108 | } |
| 109 | |
| 110 | func (b *boolValue) String() string { |
| 111 | if b.bool == nil || *b.bool == nil { |
| 112 | return "false" |
| 113 | } else if **b.bool { |
| 114 | return "true" |
| 115 | } |
| 116 | return "false" |
| 117 | } |
| 118 | |
| 119 | func (b *boolValue) Type() string { |
| 120 | return "bool" |
no outgoing calls