* @brief Installs every host bridge and the full SDK into a QJSEngine in one call. */
| 782 | * @brief Installs every host bridge and the full SDK into a QJSEngine in one call. |
| 783 | */ |
| 784 | void DataModel::ScriptApiCall::installAll(QJSEngine* js, int sourceId) |
| 785 | { |
| 786 | Q_ASSERT(js); |
| 787 | |
| 788 | installHelperBridgesJS(js, sourceId); |
| 789 | installJS(js, sourceId); |
| 790 | } |
| 791 | |
| 792 | /** |
| 793 | * @brief Installs every host bridge and the full SDK into a Lua state in one call. |
nothing calls this directly
no test coverage detected