Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check computed property names in strict mode #484

Open
bbrto21 opened this issue Oct 29, 2019 · 0 comments
Open

Check computed property names in strict mode #484

bbrto21 opened this issue Oct 29, 2019 · 0 comments
Labels
bug Something isn't working

Comments

@bbrto21
Copy link
Contributor

bbrto21 commented Oct 29, 2019

Escargot (please complete the following information):

  • OS: Ubuntu 18.04
  • Revision 6aa1ede

Describe the bug
Classes are always strict mode. Check computed property names and heritage expressions as well.

Test case

function test() {
    var b = class {
        [Object.preventExtensions({}).prop = 4]() {}
        constructor() { }
    };
}
try {
    test()
    throw "fail"
} catch (e) {
    print(e instanceof TypeError);
}

Expected behavior
true

@bbrto21 bbrto21 added the bug Something isn't working label Oct 29, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant