From 81635b93c597b10282cb14e0873f5e3d22395186 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 6 Jun 2026 23:16:51 +0800 Subject: Rename `ExitCode` to `ResExitCode` and `REPL` to `ResREPL` --- mingling_core/src/program/repl_exec/res.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mingling_core/src/program/repl_exec') diff --git a/mingling_core/src/program/repl_exec/res.rs b/mingling_core/src/program/repl_exec/res.rs index 1295652..53e82d8 100644 --- a/mingling_core/src/program/repl_exec/res.rs +++ b/mingling_core/src/program/repl_exec/res.rs @@ -1,6 +1,6 @@ /// Internal resource for the REPL runtime, used to control the REPL's state during execution #[derive(Default, Clone)] -pub struct REPL { +pub struct ResREPL { /// Marks whether the REPL should exit after the current loop ends pub exit: bool, } -- cgit