add error value to occurs_check prolog flag (#783)

This commit is contained in:
Mark Thom
2021-02-28 11:44:07 -07:00
parent 81ecd17b93
commit 101ed9a633
6 changed files with 65 additions and 12 deletions

View File

@@ -596,7 +596,8 @@ pub(crate) enum RepFlag {
InCharacterCode,
MaxArity,
// MaxInteger,
// MinInteger
// MinInteger,
Term,
}
impl RepFlag {
@@ -606,6 +607,7 @@ impl RepFlag {
RepFlag::CharacterCode => "character_code",
RepFlag::InCharacterCode => "in_character_code",
RepFlag::MaxArity => "max_arity",
RepFlag::Term => "term",
// RepFlag::MaxInteger => "max_integer",
// RepFlag::MinInteger => "min_integer"
}