Files
codeql/java/ql/src/semmle/code/Unit.qll
Anders Schack-Mulligen 442de2e2d2 Java: Add qldoc.
2020-09-08 15:09:39 +02:00

11 lines
264 B
Plaintext

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