blob: 47bdc0e87a39bfe84c091f866e72a25745112875 [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: >
Async function method definitions return promises
---*/
var obj = {
async method() {}
}
var p = obj.method();
assert(p instanceof Promise, "async functions return promise instances");