| 4481 | } |
| 4482 | |
| 4483 | void ScriptBroadcaster::addAsSource(DebugableObjectBase* b, const Identifier& callbackId) |
| 4484 | { |
| 4485 | throwIfAlreadyConnected(); |
| 4486 | |
| 4487 | attachedListeners.add(new DebugableObjectListener(this, {}, b, callbackId)); |
| 4488 | |
| 4489 | checkMetadataAndCallWithInitValues(attachedListeners.getLast()); |
| 4490 | } |
| 4491 | |
| 4492 | bool ScriptBroadcaster::addLocationForFunctionCall(const Identifier& id, const DebugableObjectBase::Location& location) |
| 4493 | { |
no test coverage detected