disabledRawModeMask property

CONSOLE_MODE get disabledRawModeMask

Console-mode bitmask used to return the Windows console to standard interactive line input after a raw-mode read. Exposed (via the static getter, not the SetConsoleMode call) so tests can pin the value and catch a regression to 0 if anyone re-introduces a bitwise-AND chain.

Implementation

static CONSOLE_MODE get disabledRawModeMask =>
    ENABLE_ECHO_INPUT |
    ENABLE_EXTENDED_FLAGS |
    ENABLE_INSERT_MODE |
    ENABLE_LINE_INPUT |
    ENABLE_MOUSE_INPUT |
    ENABLE_PROCESSED_INPUT |
    ENABLE_QUICK_EDIT_MODE |
    ENABLE_VIRTUAL_TERMINAL_INPUT;