-
Notifications
You must be signed in to change notification settings - Fork 441
Update the XML spec #72
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
Conversation
if Seq.contains "any" allTypes then "any" else String.concat " | " allTypes | ||
else | ||
// Check if is array type, which looks like "sequence<DOMString>" | ||
let genericMatch = Regex.Match(objDomType, @"^(\w+)<(\w+)>$") | ||
let unescaped = objDomType.Replace("<", "<").Replace(">", ">") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM |
👍 |
@@ -383,7 +388,7 @@ interface IDBObjectStore { | |||
deleteIndex(indexName: string): void; | |||
get(key: any): IDBRequest; | |||
index(name: string): IDBIndex; | |||
openCursor(range?: any, direction?: string): IDBRequest; | |||
openCursor(range?: IDBKeyRange | IDBValidKey, direction?: string): IDBRequest; | |||
put(value: any, key?: any): IDBRequest; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also should be put(value: any, key?: IDBValidKey): IDBRequest;
. Other methods are same.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed now
Bumps [webidl2](https://github.com./w3c/webidl2.js) from 23.13.0 to 23.13.1. - [Release notes](https://github.com./w3c/webidl2.js/releases) - [Changelog](https://github.com./w3c/webidl2.js/blob/gh-pages/CHANGELOG.md) - [Commits](w3c/webidl2.js@v23.13.0...v23.13.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com.>
This PR updates the XML spec with the Windows 10 TH2 release version (10586).