neutralts/bif/
constants.rspub(crate) const BIF_ERROR_MODIFIER_NOT_ALLOWED: &str = "modifier not allowed";
pub(crate) const BIF_ERROR_FLAGS_NOT_ALLOWED: &str = "flags not allowed";
pub(crate) const BIF_ERROR_ARGUMENTS_NOT_FOUND: &str = "arguments not found";
pub(crate) const BIF_ERROR_ARGUMENT_NOT_NUMBER: &str = "argument is not a number";
pub(crate) const BIF_ERROR_INVALID_ARGUMENT_1: &str = "invalid argument 1";
pub(crate) const BIF_ERROR_INVALID_ARGUMENT_2: &str = "invalid argument 2";
pub(crate) const BIF_ERROR_UNKNOWN_BIF: &str = "unknown bif";
pub(crate) const BIF_ERROR_BIF_DEPRECATED: &str = "Bif 'count' is deprecated";
pub(crate) const BIF_ERROR_INSECURE_FILE_NAME: &str = "insecure file name";
pub(crate) const BIF_ERROR_FILE_NOT_FOUND: &str = "file not found";
pub(crate) const BIF_ERROR_ONLY_PYTHON_ENGINE: &str = "only Python engine is supported";
pub(crate) const BIF_ERROR_OBJ_FILE_NOT_FOUND: &str = "obj script not found";
pub(crate) const BIF_ERROR_ARGS_FROM_TO_NOT_FOUND: &str = "arguments 'from' and 'to' not found";
pub(crate) const BIF_ERROR_ARGS_TO_NOT_FOUND: &str = "arguments 'to' not found";
pub(crate) const BIF_ERROR_ARGS_KEY_NOT_FOUND: &str = "arguments 'key' not found";
pub(crate) const BIF_ERROR_ARGS_VALUE_NOT_FOUND: &str = "arguments 'value' not found";
pub(crate) const BIF_ERROR_PARAM_SET_HERE: &str = "param cannot be set here";
pub(crate) const BIF_ERROR_NOT_VALID_JSON: &str = "not a valid JSON file";
pub(crate) const BIF_ERROR_INSECURE_VARNAME: &str = "insecure varname";
pub(crate) const BIF_ERROR_ARGS_ARRAY_NOT_FOUND: &str = "arguments 'array' not found";
pub(crate) const BIF_ERROR_ARGS_SEPARATOR_NOT_FOUND: &str = "arguments 'separator' not found";
pub(crate) const BIF_ERROR_DECLARE_SET_HERE: &str = "declare cannot be set here";
pub(crate) const BIF_ERROR_FROM_GREATER_THAN_TO: &str = "from > to";
pub(crate) const BIF_ERROR_REDIRECT_REQUIRES_URL: &str = "this redirection requires URL";
pub(crate) const BIF_ERROR_STATUS_CODE_NOT_ALLOWED: &str = "status code not allowed";
pub(crate) const BIF_ERROR_REDIRECT_TYPE_NOT_ALLOWED: &str = "redirect type not allowed";
pub(crate) const BIF_ERROR_DECLARED_IS_EMPTY: &str = " declared is empty";