Like this:
var dialogTrust = app.trustedFunction(function()
{
app.beginPriv();
var data = {
description: { name: "Test Dialog", elements: [
{ name: "Hello World", type: "static_text", },
{ type: "ok", },
] } };
app.execDialog(data);
app.endPriv();
});