| 259 | } |
| 260 | |
| 261 | void GDScriptFunctionState::_clear_connections() { |
| 262 | List<Object::Connection> conns; |
| 263 | get_signals_connected_to_this(&conns); |
| 264 | |
| 265 | for (Object::Connection &c : conns) { |
| 266 | c.signal.disconnect(c.callable); |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | void GDScriptFunctionState::_bind_methods() { |
| 271 | ClassDB::bind_method(D_METHOD("resume", "arg"), &GDScriptFunctionState::resume, DEFVAL(Variant())); |
no test coverage detected