Test the new flexible handler resolution with methods object and global fallback support!
đ¯ Resolution Priority: The system checks handlers in this order:
1. Class methods (default priority)
2. Methods object (Vue.js-like pattern)
3. Global fallback (window.handlerName)
Note: Priority can be changed with methodsFirst: true
đī¸ Class Handler (Traditional)
Handler defined as class method - the original YpsilonEventHandler pattern.
đĻ Methods Object (Vue.js-like)
Handlers defined in separate methods object - perfect for modular code organization.
đ Global Fallback
Handlers defined globally - useful for legacy integration and plugin systems.
đ Priority System
Same handler name in multiple locations - shows resolution priority.