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

Support annotated types in IDBFactory and IDBObjectStore #217

Merged
merged 2 commits into from
Sep 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -2177,7 +2177,7 @@ of indexed databases.
[Exposed=(Window,Worker)]
interface IDBFactory {
[NewObject] IDBOpenDBRequest open(DOMString name,
[EnforceRange] optional unsigned long long version);
optional [EnforceRange] unsigned long long version);
[NewObject] IDBOpenDBRequest deleteDatabase(DOMString name);

short cmp(any first, any second);
Expand Down Expand Up @@ -2732,9 +2732,9 @@ interface IDBObjectStore {
[NewObject] IDBRequest get(any query);
[NewObject] IDBRequest getKey(any query);
[NewObject] IDBRequest getAll(optional any query,
[EnforceRange] optional unsigned long count);
optional [EnforceRange] unsigned long count);
[NewObject] IDBRequest getAllKeys(optional any query,
[EnforceRange] optional unsigned long count);
optional [EnforceRange] unsigned long count);
[NewObject] IDBRequest count(optional any query);

[NewObject] IDBRequest openCursor(optional any query,
Expand Down Expand Up @@ -3830,9 +3830,9 @@ interface IDBIndex {
[NewObject] IDBRequest get(any query);
[NewObject] IDBRequest getKey(any query);
[NewObject] IDBRequest getAll(optional any query,
[EnforceRange] optional unsigned long count);
optional [EnforceRange] unsigned long count);
[NewObject] IDBRequest getAllKeys(optional any query,
[EnforceRange] optional unsigned long count);
optional [EnforceRange] unsigned long count);
[NewObject] IDBRequest count(optional any query);

[NewObject] IDBRequest openCursor(optional any query,
Expand Down