Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.188
Chrome 115
Windows
Desktop
one year ago
Test name Executions per second
basic 4525587.0 Ops/sec
old 2103260.2 Ops/sec
Tests:
  • basic

    x
     
    function test()
    {
      if(Math.random() < 0) throw 0;
    }
    async function main()
    {
      try{
        test();
      }catch(e){
        
      }
    }
    main()
  • old

     
    async function test()
    {
      if(Math.random() < 0) throw 0;
    }
    async function main()
    {
      try{
        await test();
      }catch(e){
        
      }
    }
    main()