Fixes issue 3264 by adding a fallback read mode when reading from non-tty stdin on Windows

This commit is contained in:
Alexander McLin
2026-03-29 21:29:48 -04:00
parent 43b6afcdf3
commit 533594b6b6
4 changed files with 92 additions and 25 deletions

View File

@@ -1,3 +1,8 @@
#[cfg(feature = "repl")]
pub mod fallback_mode;
#[cfg(feature = "repl")]
pub mod user_interaction;
use crate::parser::ast::*;
use crate::parser::lexer::Lexer;
use crate::parser::parser::*;