@@ -645,9 +645,10 @@ class BooleanLiteral extends Literal, @booleanliteral {
645
645
* - It is written in binary, octal or hexadecimal notation
646
646
* - It is written in decimal notation, has the value `2147483648` and is preceded
647
647
* 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`.
651
652
*
652
653
* The last exception is necessary because `2147483648` on its own would not be
653
654
* a valid integer literal (and could also not be parsed as CodeQL `int`).
@@ -667,10 +668,11 @@ class IntegerLiteral extends Literal, @integerliteral {
667
668
* - It is written in decimal notation, has the value `9223372036854775808` and
668
669
* is preceded by a minus; in this case the value of the LongLiteral is
669
670
* -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
672
671
* `MinusExpr`.
673
672
*
673
+ * In all other cases the preceding minus, if any, will be modeled as a separate
674
+ * `MinusExpr`.
675
+ *
674
676
* The last exception is necessary because `9223372036854775808` on its own
675
677
* would not be a valid long literal.
676
678
*/
0 commit comments