Add basic event dispatch with bubbling, capturing, and propagation interruption.

This commit is contained in:
Josh Matthews 2013-10-02 00:51:05 -04:00
parent bb97fd13f3
commit 88f5c2b133
12 changed files with 380 additions and 70 deletions

View file

@ -768,7 +768,8 @@ pub enum Error {
NotFound,
HierarchyRequest,
InvalidCharacter,
NotSupported
NotSupported,
InvalidState
}
pub type Fallible<T> = Result<T, Error>;