mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
removed instances of -> () in existing code
This commit is contained in:
parent
b1faaa15dc
commit
d6568e608b
8 changed files with 29 additions and 29 deletions
|
@ -18,15 +18,15 @@ impl TestBindingProxyMethods for TestBindingProxy {
|
|||
fn Length(&self) -> u32 { 0 }
|
||||
fn SupportedPropertyNames(&self) -> Vec<DOMString> { vec![] }
|
||||
fn GetNamedItem(&self, _: DOMString) -> DOMString { DOMString::new() }
|
||||
fn SetNamedItem(&self, _: DOMString, _: DOMString) -> () {}
|
||||
fn SetNamedItem(&self, _: DOMString, _: DOMString) {}
|
||||
fn GetItem(&self, _: u32) -> DOMString { DOMString::new() }
|
||||
fn SetItem(&self, _: u32, _: DOMString) -> () {}
|
||||
fn RemoveItem(&self, _: DOMString) -> () {}
|
||||
fn SetItem(&self, _: u32, _: DOMString) {}
|
||||
fn RemoveItem(&self, _: DOMString) {}
|
||||
fn Stringifier(&self) -> DOMString { DOMString::new() }
|
||||
fn IndexedGetter(&self, _: u32) -> Option<DOMString> { None }
|
||||
fn NamedDeleter(&self, _: DOMString) -> () {}
|
||||
fn IndexedSetter(&self, _: u32, _: DOMString) -> () {}
|
||||
fn NamedSetter(&self, _: DOMString, _: DOMString) -> () {}
|
||||
fn NamedDeleter(&self, _: DOMString) {}
|
||||
fn IndexedSetter(&self, _: u32, _: DOMString) {}
|
||||
fn NamedSetter(&self, _: DOMString, _: DOMString) {}
|
||||
fn NamedGetter(&self, _: DOMString) -> Option<DOMString> { None }
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue