Roman Shafigullin

Results 2 issues of Roman Shafigullin

I used version in http://esprima.org/demo/rewrite.html this code `(/**/function(){}())` returns ``` /**/ function () { }(); ``` and should ``` (/**/ function () { }()); ```

# Summary Currently [TrustedHTML](https://developer.mozilla.org/en-US/docs/Web/API/TrustedHTML) objects converted to strings during rendering before hitting DOM API that means all HTML insertions handled by [default policy](https://developer.mozilla.org/en-US/docs/Web/API/TrustedTypePolicyFactory/createPolicy#the_default_policy). That prevents us from migrating to Trusted...