| 123 | } |
| 124 | |
| 125 | bool BindingTree::exists(const std::string& id) |
| 126 | { |
| 127 | for (auto& tree : m_children) |
| 128 | { |
| 129 | if (tree->getId() == id) |
| 130 | return true; |
| 131 | } |
| 132 | return false; |
| 133 | } |
| 134 | |
| 135 | void BindingTree::operator()(sol::state_view lua, bool spreads) |
| 136 | { |