blob: d16a58d33ba6de7dc770068c2086599398b9cc22 (
plain) (
blame)
1
2
3
4
5
6
7
|
// Doc Not Optimize
/// Internal resource for the REPL runtime, used to control the REPL's state during execution
#[derive(Default, Clone)]
pub struct ResREPL {
/// Marks whether the REPL should exit after the current loop ends
pub exit: bool,
}
|