tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

methods-async-super-call-body.js (548B)


      1 // |reftest| async
      2 // Copyright 2016 Microsoft, Inc. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 /*---
      6 author: Brian Terlson <brian.terlson@microsoft.com>
      7 esid: pending
      8 description: >
      9  Super calls work in body of async methods
     10 flags: [async]
     11 features: [async-functions]
     12 ---*/
     13 class A {
     14  async method() {
     15    return 'sup';
     16  }
     17 }
     18 
     19 class B extends A {
     20  async method() {
     21    var x = await super.method();
     22    assert.sameValue(x, 'sup');
     23  }
     24 }
     25 var child = new B();
     26 child.method().then($DONE, $DONE);