Add tests for .toString() of private methods (#2268)

This commit is contained in:
Kubilay Kahveci 2019-08-05 21:47:19 +01:00 committed by Leo Balter
parent aae991da8a
commit 9b29709797
4 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1,17 @@
// 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]
---*/
let c = new (class {
/* before */#f /* a */ ( /* b */ ) /* c */ { /* d */ }/* after */
assert(expected) {
assertToStringOrNativeFunction(this.#f, expected);
}
});
c.assert("#f /* a */ ( /* b */ ) /* c */ { /* d */ }");

View File

@ -0,0 +1,18 @@
// 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 */ }");

View File

@ -0,0 +1,17 @@
// 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]
---*/
let C = class {
/* before */static #f /* a */ ( /* b */ ) /* c */ { /* d */ }/* after */
static assert(expected) {
assertToStringOrNativeFunction(this.#f, expected);
}
};
C.assert("#f /* a */ ( /* b */ ) /* c */ { /* d */ }");

View File

@ -0,0 +1,17 @@
// 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 */ }");