aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/program/repl_exec
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_core/src/program/repl_exec')
-rw-r--r--mingling_core/src/program/repl_exec/res.rs1
-rw-r--r--mingling_core/src/program/repl_exec/splitter.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/mingling_core/src/program/repl_exec/res.rs b/mingling_core/src/program/repl_exec/res.rs
index 53e82d8..d16a58d 100644
--- a/mingling_core/src/program/repl_exec/res.rs
+++ b/mingling_core/src/program/repl_exec/res.rs
@@ -1,3 +1,4 @@
+// Doc Not Optimize
/// Internal resource for the REPL runtime, used to control the REPL's state during execution
#[derive(Default, Clone)]
pub struct ResREPL {
diff --git a/mingling_core/src/program/repl_exec/splitter.rs b/mingling_core/src/program/repl_exec/splitter.rs
index c74a3f1..312ad73 100644
--- a/mingling_core/src/program/repl_exec/splitter.rs
+++ b/mingling_core/src/program/repl_exec/splitter.rs
@@ -1,3 +1,4 @@
+// Doc Not Optimize
/// Wraps `split_input` to work with owned `String` inputs.
pub fn split_input_string(input: &str) -> Vec<String> {
split_input(input)