(ctx: Context)
| 8 | use std::collections::HashMap; |
| 9 | |
| 10 | pub fn create_validation_error(ctx: Context) -> GcRefLock<'_, Class> { |
| 11 | let error_class = Class::new(ctx.intern(b"ValidationError!")); |
| 12 | Gc::new(&ctx, RefLock::new(error_class)) |
| 13 | } |
| 14 | |
| 15 | // Helper to create error info object |
| 16 | pub fn create_error_info<'gc>( |
no test coverage detected