blob: cbd5a2b766f745768dfb83c33b475eb758fa6343 [file] [log] [blame]
// Copyright (C) 2019 Kubilay Kahveci (Bloomberg LP). All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Function.prototype.toString on a private method
features: [class-methods-private]
includes: [nativeFunctionMatcher.js]
---*/
class C {
/* before */#f /* a */ ( /* b */ ) /* c */ { /* d */ }/* after */
assert(expected) {
assertToStringOrNativeFunction(this.#f, expected);
}
}
let c = new C();
c.assert("#f /* a */ ( /* b */ ) /* c */ { /* d */ }");