Files
codeql/shared/util/codeql/util/Unit.qll
2025-06-24 10:25:06 +02:00

13 lines
294 B
Plaintext

/** Provides the `Unit` class. */
overlay[local?]
module;
/** The unit type. */
private newtype TUnit = TMkUnit()
/** The trivial type with a single element. */
final class Unit extends TUnit {
/** Gets a textual representation of this element. */
string toString() { result = "unit" }
}