← All docs
stream_isatty() — internals
Compiler internals for stream_isatty(): lowering path, type checks, and runtime helpers.
stream_isatty() — internals
Where it lives
- Signature:
src/builtins/io/stream_isatty.rs - Lowering:
src/codegen/lower_inst/builtins/io.rs:2125 (lower_stream_isatty) - Function symbol:
lower_stream_isatty()
Lowering notes
- Lowers
stream_isatty(stream).
Runtime helpers
The following runtime helpers are referenced:
__rt_stream_isatty
Signature summary
function stream_isatty(resource $stream): bool
What the type checker enforces
- Arity: takes exactly 1 argument.
Eval interpreter (magician)
- Declaration:
crates/elephc-magician/src/interpreter/builtins/filesystem/stream_isatty.rs(eval_builtin!) - Dispatch hooks:
direct,values