mirror of https://github.com/tc39/test262.git
Merge pull request #2171 from leobalter/call-innerb
Add assertion for private method shadowed by getter case
This commit is contained in:
commit
35dc11f569
src/class-elements
test/language
expressions/class/elements
statements/class/elements
|
@ -39,3 +39,6 @@ assert.sameValue(c.method(), 'outer class');
|
|||
assert.throws(TypeError, function() {
|
||||
innerB.method(c);
|
||||
}, 'accessed inner class getter from an object of outer class');
|
||||
assert.throws(TypeError, function() {
|
||||
C.prototype.method.call(innerB);
|
||||
});
|
||||
|
|
|
@ -42,3 +42,6 @@ assert.sameValue(c.method(), 'outer class');
|
|||
assert.throws(TypeError, function() {
|
||||
innerB.method(c);
|
||||
}, 'accessed inner class getter from an object of outer class');
|
||||
assert.throws(TypeError, function() {
|
||||
C.prototype.method.call(innerB);
|
||||
});
|
||||
|
|
|
@ -42,3 +42,6 @@ assert.sameValue(c.method(), 'outer class');
|
|||
assert.throws(TypeError, function() {
|
||||
innerB.method(c);
|
||||
}, 'accessed inner class getter from an object of outer class');
|
||||
assert.throws(TypeError, function() {
|
||||
C.prototype.method.call(innerB);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue