| 279 | } |
| 280 | |
| 281 | bool node::is_primitive() const |
| 282 | { |
| 283 | if (is<integer>() || is<number>() || is<string>() || is<boolean>()) |
| 284 | return true; |
| 285 | return false; |
| 286 | } |
| 287 | |
| 288 | bool node::is_container() const |
| 289 | { |
no outgoing calls
no test coverage detected