Update shared/util/codeql/util/Option.qll

Co-authored-by: Erik Krogh Kristensen <erik-krogh@github.com>
This commit is contained in:
Anders Schack-Mulligen 2022-11-30 10:55:07 +01:00 коммит произвёл GitHub
Родитель 71f5c8aa88
Коммит ba56565125
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -28,6 +28,9 @@ module Option<TypeWithToString T> {
/** Gets the wrapped element, if any. */
T asSome() { this = TSome(result) }
/** Holds if this option is the singleton `None`. */
predicate isNone() { this = TNone() }
}
/** The singleton `None` element. */