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

fix(ext/cache): illegal constructor #16205

Merged
merged 6 commits into from
Oct 16, 2022

Conversation

marcosc90
Copy link
Contributor

@marcosc90 marcosc90 commented Oct 8, 2022

fixes #16199

There is no constructor in interface Cache {}
https://w3c.github.io/ServiceWorker/#cache-interface

Copy link
Member

@crowlKats crowlKats left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should rather be using webidl.createBranded & also have brand assertions in all the methods

ext/cache/01_cache.js Outdated Show resolved Hide resolved
Deno.test(function cacheIllegalConstructor() {
// @ts-ignore illegal constructor
assertThrows(() => new Cache(), TypeError, "Illegal constructor");
// @ts-ignore illegal constructor
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

// @ts-expect-error maybe better?

Copy link
Member

@satyarohith satyarohith left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Thanks!

@satyarohith satyarohith merged commit 5252ff5 into denoland:main Oct 16, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

cache: new Cache() does not throw a TypeError
4 participants