partial lambda support
This commit is contained in:
parent
ba8a8bee91
commit
61a700479d
36 changed files with 110 additions and 38 deletions
|
@ -25,3 +25,11 @@ bool visitor::is_node_empty::operator()(const array& arr) const {
|
|||
bool visitor::is_node_empty::operator()(const object& obj) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool visitor::is_node_empty::operator()(const string_lambda& lambda) const {
|
||||
return false; // TODO
|
||||
}
|
||||
|
||||
bool visitor::is_node_empty::operator()(const renderer_lambda& lambda) const {
|
||||
return false; // TODO
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue