blob: cf69be1fd2f21581f94a458e30a7b5b629009f9b [file] [log] [blame]
// Copyright 2016 Microsoft, Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Brian Terlson <brian.terlson@microsoft.com>
esid: pending
description: >
Super calls work in body of async methods
flags: [async]
features: [async-functions]
---*/
class A {
async method() {
return 'sup';
}
}
class B extends A {
async method() {
var x = await super.method();
assert.sameValue(x, 'sup');
}
}
var child = new B();
child.method().then($DONE, $DONE);