ruchy 4.1.1

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Method dispatch implementation module
//!
//! This module handles method calls for all value types.
//! Implementation split across:
//! - interpreter_methods_string.rs (string/array methods)
//! - interpreter_methods_dispatch.rs (core dispatch logic)
//! - interpreter_methods_html.rs (HTML document/element methods)
//! - interpreter_methods_instance.rs (mutable object instance methods)
//! - interpreter_methods_actor.rs (actor/struct/object methods)

// All implementations are in the split modules.
// This file exists only for backwards compatibility and module organization.