blob: 55d49d6d0969d2fb0627084e1c7889254461e91b [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 static private method
features: [class-static-methods-private]
includes: [nativeFunctionMatcher.js]
---*/
class C {
/* before */static #f /* a */ ( /* b */ ) /* c */ { /* d */ }/* after */
static assert(expected) {
assertToStringOrNativeFunction(this.#f, expected);
}
}
C.assert("#f /* a */ ( /* b */ ) /* c */ { /* d */ }");