@@ -645,9 +645,10 @@ class BooleanLiteral extends Literal, @booleanliteral {
645645 * - It is written in binary, octal or hexadecimal notation
646646 * - It is written in decimal notation, has the value `2147483648` and is preceded
647647 * by a minus; in this case the value of the IntegerLiteral is -2147483648 and
648- * the preceding minus will *not* be modeled as `MinusExpr`.<br/>
649- * In all other cases the preceding minus, if any, will be modeled as separate
650- * `MinusExpr`.
648+ * the preceding minus will *not* be modeled as `MinusExpr`.
649+ *
650+ * In all other cases the preceding minus, if any, will be modeled as a separate
651+ * `MinusExpr`.
651652 *
652653 * The last exception is necessary because `2147483648` on its own would not be
653654 * a valid integer literal (and could also not be parsed as CodeQL `int`).
@@ -667,10 +668,11 @@ class IntegerLiteral extends Literal, @integerliteral {
667668 * - It is written in decimal notation, has the value `9223372036854775808` and
668669 * is preceded by a minus; in this case the value of the LongLiteral is
669670 * -9223372036854775808 and the preceding minus will *not* be modeled as
670- * `MinusExpr`.<br/>
671- * In all other cases the preceding minus, if any, will be modeled as separate
672671 * `MinusExpr`.
673672 *
673+ * In all other cases the preceding minus, if any, will be modeled as a separate
674+ * `MinusExpr`.
675+ *
674676 * The last exception is necessary because `9223372036854775808` on its own
675677 * would not be a valid long literal.
676678 */
0 commit comments