Skip to content

Commit

Permalink
more specific docs for Indexing* methods (#3533)
Browse files Browse the repository at this point in the history
  • Loading branch information
bonsairobo committed Jul 23, 2023
1 parent ac48086 commit b76af3b
Show file tree
Hide file tree
Showing 43 changed files with 57 additions and 57 deletions.
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_AudioTrackList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ extern "C" {
pub fn get_track_by_id(this: &AudioTrackList, id: &str) -> Option<AudioTrack>;
#[cfg(feature = "AudioTrack")]
#[wasm_bindgen(method, structural, js_class = "AudioTrackList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_CssRuleList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern "C" {
pub fn item(this: &CssRuleList, index: u32) -> Option<CssRule>;
#[cfg(feature = "CssRule")]
#[wasm_bindgen(method, structural, js_class = "CSSRuleList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_CssStyleDeclaration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ extern "C" {
priority: &str,
) -> Result<(), JsValue>;
#[wasm_bindgen(method, structural, js_class = "CSSStyleDeclaration", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_DataTransferItemList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ extern "C" {
pub fn remove(this: &DataTransferItemList, index: u32) -> Result<(), JsValue>;
#[cfg(feature = "DataTransferItem")]
#[wasm_bindgen(method, structural, js_class = "DataTransferItemList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_DomRectList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern "C" {
pub fn item(this: &DomRectList, index: u32) -> Option<DomRect>;
#[cfg(feature = "DomRect")]
#[wasm_bindgen(method, structural, js_class = "DOMRectList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_DomStringList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extern "C" {
#[doc = "*This API requires the following crate features to be activated: `DomStringList`*"]
pub fn item(this: &DomStringList, index: u32) -> Option<String>;
#[wasm_bindgen(method, structural, js_class = "DOMStringList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
6 changes: 3 additions & 3 deletions crates/web-sys/src/features/gen_DomStringMap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ extern "C" {
#[doc = "*This API requires the following crate features to be activated: `DomStringMap`*"]
pub type DomStringMap;
#[wasm_bindgen(method, structural, js_class = "DOMStringMap", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DomStringMap`*"]
pub fn get(this: &DomStringMap, name: &str) -> Option<String>;
#[wasm_bindgen(catch, method, structural, js_class = "DOMStringMap", indexing_setter)]
#[doc = "Indexing setter."]
#[doc = "Indexing setter. As in the literal Javascript `this[key] = value`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `DomStringMap`*"]
pub fn set(this: &DomStringMap, name: &str, value: &str) -> Result<(), JsValue>;
#[wasm_bindgen(method, structural, js_class = "DOMStringMap", indexing_deleter)]
#[doc = "Indexing deleter."]
#[doc = "Indexing deleter. As in the literal Javascript `delete this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_DomTokenList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ extern "C" {
force: bool,
) -> Result<bool, JsValue>;
#[wasm_bindgen(method, structural, js_class = "DOMTokenList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_FileList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern "C" {
pub fn item(this: &FileList, index: u32) -> Option<File>;
#[cfg(feature = "File")]
#[wasm_bindgen(method, structural, js_class = "FileList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
4 changes: 2 additions & 2 deletions crates/web-sys/src/features/gen_HtmlAllCollection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ extern "C" {
pub fn named_item(this: &HtmlAllCollection, name: &str) -> Option<::js_sys::Object>;
#[cfg(feature = "Node")]
#[wasm_bindgen(method, structural, js_class = "HTMLAllCollection", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HtmlAllCollection`, `Node`*"]
pub fn get_with_index(this: &HtmlAllCollection, index: u32) -> Option<Node>;
#[wasm_bindgen(method, structural, js_class = "HTMLAllCollection", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
4 changes: 2 additions & 2 deletions crates/web-sys/src/features/gen_HtmlCollection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ extern "C" {
pub fn named_item(this: &HtmlCollection, name: &str) -> Option<Element>;
#[cfg(feature = "Element")]
#[wasm_bindgen(method, structural, js_class = "HTMLCollection", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Element`, `HtmlCollection`*"]
pub fn get_with_index(this: &HtmlCollection, index: u32) -> Option<Element>;
#[cfg(feature = "Element")]
#[wasm_bindgen(method, structural, js_class = "HTMLCollection", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_HtmlDocument.rs
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ extern "C" {
text_7: &str,
) -> Result<(), JsValue>;
#[wasm_bindgen(catch, method, structural, js_class = "HTMLDocument", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ extern "C" {
js_class = "HTMLFormControlsCollection",
indexing_getter
)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
4 changes: 2 additions & 2 deletions crates/web-sys/src/features/gen_HtmlFormElement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,14 +182,14 @@ extern "C" {
#[doc = "*This API requires the following crate features to be activated: `HtmlFormElement`*"]
pub fn submit(this: &HtmlFormElement) -> Result<(), JsValue>;
#[wasm_bindgen(method, structural, js_class = "HTMLFormElement", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HtmlFormElement`*"]
pub fn get_with_index(this: &HtmlFormElement, index: u32) -> Option<Element>;
#[wasm_bindgen(method, structural, js_class = "HTMLFormElement", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_HtmlOptionsCollection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ extern "C" {
js_class = "HTMLOptionsCollection",
indexing_setter
)]
#[doc = "Indexing setter."]
#[doc = "Indexing setter. As in the literal Javascript `this[key] = value`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
4 changes: 2 additions & 2 deletions crates/web-sys/src/features/gen_HtmlSelectElement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ extern "C" {
#[doc = "*This API requires the following crate features to be activated: `HtmlSelectElement`*"]
pub fn set_custom_validity(this: &HtmlSelectElement, error: &str);
#[wasm_bindgen(method, structural, js_class = "HTMLSelectElement", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand All @@ -348,7 +348,7 @@ extern "C" {
js_class = "HTMLSelectElement",
indexing_setter
)]
#[doc = "Indexing setter."]
#[doc = "Indexing setter. As in the literal Javascript `this[key] = value`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_ImageTrackList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ extern "C" {
#[cfg(web_sys_unstable_apis)]
#[cfg(feature = "ImageTrack")]
#[wasm_bindgen(method, structural, js_class = "ImageTrackList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_MediaList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ extern "C" {
#[doc = "*This API requires the following crate features to be activated: `MediaList`*"]
pub fn item(this: &MediaList, index: u32) -> Option<String>;
#[wasm_bindgen(method, structural, js_class = "MediaList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
4 changes: 2 additions & 2 deletions crates/web-sys/src/features/gen_MimeTypeArray.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ extern "C" {
pub fn named_item(this: &MimeTypeArray, name: &str) -> Option<MimeType>;
#[cfg(feature = "MimeType")]
#[wasm_bindgen(method, structural, js_class = "MimeTypeArray", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MimeType`, `MimeTypeArray`*"]
pub fn get_with_index(this: &MimeTypeArray, index: u32) -> Option<MimeType>;
#[cfg(feature = "MimeType")]
#[wasm_bindgen(method, structural, js_class = "MimeTypeArray", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
4 changes: 2 additions & 2 deletions crates/web-sys/src/features/gen_NamedNodeMap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ extern "C" {
pub fn set_named_item_ns(this: &NamedNodeMap, arg: &Attr) -> Result<Option<Attr>, JsValue>;
#[cfg(feature = "Attr")]
#[wasm_bindgen(method, structural, js_class = "NamedNodeMap", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Attr`, `NamedNodeMap`*"]
pub fn get_with_name(this: &NamedNodeMap, name: &str) -> Option<Attr>;
#[cfg(feature = "Attr")]
#[wasm_bindgen(method, structural, js_class = "NamedNodeMap", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_NodeList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern "C" {
pub fn item(this: &NodeList, index: u32) -> Option<Node>;
#[cfg(feature = "Node")]
#[wasm_bindgen(method, structural, js_class = "NodeList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_PaintRequestList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern "C" {
pub fn item(this: &PaintRequestList, index: u32) -> Option<PaintRequest>;
#[cfg(feature = "PaintRequest")]
#[wasm_bindgen(method, structural, js_class = "PaintRequestList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
4 changes: 2 additions & 2 deletions crates/web-sys/src/features/gen_Plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ extern "C" {
pub fn named_item(this: &Plugin, name: &str) -> Option<MimeType>;
#[cfg(feature = "MimeType")]
#[wasm_bindgen(method, structural, js_class = "Plugin", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `MimeType`, `Plugin`*"]
pub fn get_with_index(this: &Plugin, index: u32) -> Option<MimeType>;
#[cfg(feature = "MimeType")]
#[wasm_bindgen(method, structural, js_class = "Plugin", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
4 changes: 2 additions & 2 deletions crates/web-sys/src/features/gen_PluginArray.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ extern "C" {
pub fn refresh_with_reload_documents(this: &PluginArray, reload_documents: bool);
#[cfg(feature = "Plugin")]
#[wasm_bindgen(method, structural, js_class = "PluginArray", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Plugin`, `PluginArray`*"]
pub fn get_with_index(this: &PluginArray, index: u32) -> Option<Plugin>;
#[cfg(feature = "Plugin")]
#[wasm_bindgen(method, structural, js_class = "PluginArray", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_SourceBufferList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ extern "C" {
pub fn set_onremovesourcebuffer(this: &SourceBufferList, value: Option<&::js_sys::Function>);
#[cfg(feature = "SourceBuffer")]
#[wasm_bindgen(method, structural, js_class = "SourceBufferList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_SpeechGrammarList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ extern "C" {
js_class = "SpeechGrammarList",
indexing_getter
)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_SpeechRecognitionResult.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ extern "C" {
js_class = "SpeechRecognitionResult",
indexing_getter
)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extern "C" {
js_class = "SpeechRecognitionResultList",
indexing_getter
)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
6 changes: 3 additions & 3 deletions crates/web-sys/src/features/gen_Storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,21 +55,21 @@ extern "C" {
#[doc = "*This API requires the following crate features to be activated: `Storage`*"]
pub fn set_item(this: &Storage, key: &str, value: &str) -> Result<(), JsValue>;
#[wasm_bindgen(catch, method, structural, js_class = "Storage", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Storage`*"]
pub fn get(this: &Storage, key: &str) -> Result<Option<String>, JsValue>;
#[wasm_bindgen(catch, method, structural, js_class = "Storage", indexing_setter)]
#[doc = "Indexing setter."]
#[doc = "Indexing setter. As in the literal Javascript `this[key] = value`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `Storage`*"]
pub fn set(this: &Storage, key: &str, value: &str) -> Result<(), JsValue>;
#[wasm_bindgen(catch, method, structural, js_class = "Storage", indexing_deleter)]
#[doc = "Indexing deleter."]
#[doc = "Indexing deleter. As in the literal Javascript `delete this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_StyleSheetList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern "C" {
pub fn item(this: &StyleSheetList, index: u32) -> Option<StyleSheet>;
#[cfg(feature = "StyleSheet")]
#[wasm_bindgen(method, structural, js_class = "StyleSheetList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_SvgLengthList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ extern "C" {
) -> Result<SvgLength, JsValue>;
#[cfg(feature = "SvgLength")]
#[wasm_bindgen(catch, method, structural, js_class = "SVGLengthList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_SvgNumberList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ extern "C" {
) -> Result<SvgNumber, JsValue>;
#[cfg(feature = "SvgNumber")]
#[wasm_bindgen(catch, method, structural, js_class = "SVGNumberList", indexing_getter)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down
2 changes: 1 addition & 1 deletion crates/web-sys/src/features/gen_SvgPathSegList.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ extern "C" {
js_class = "SVGPathSegList",
indexing_getter
)]
#[doc = "Indexing getter."]
#[doc = "Indexing getter. As in the literal Javascript `this[key]`."]
#[doc = ""]
#[doc = ""]
#[doc = ""]
Expand Down

0 comments on commit b76af3b

Please sign in to comment.