mirror of
https://github.com/NixOS/nix.git
synced 2025-11-10 12:36:01 +01:00
This will facilitate breaking up Nix into multiple packages for each component with Meson.
20 lines
365 B
C++
20 lines
365 B
C++
#pragma once
|
|
|
|
namespace nix {
|
|
|
|
/**
|
|
* Exit status returned from the REPL.
|
|
*/
|
|
enum class ReplExitStatus {
|
|
/**
|
|
* The user exited with `:quit`. The program (e.g., if the REPL was acting
|
|
* as the debugger) should exit.
|
|
*/
|
|
QuitAll,
|
|
/**
|
|
* The user exited with `:continue`. The program should continue running.
|
|
*/
|
|
Continue,
|
|
};
|
|
|
|
}
|