107108109110111112113114115116117
BigInteger from = p.parseIntegerLiteral(); if (from != null) { this.fromIncl = from.longValue(); } p.skipWS(); if (p.parseChar(',')) { p.skipWS(); BigInteger to = p.parseIntegerLiteral(); if (to != null)
110111112113114115116117118119120
this.fromIncl = from.longValue(); } p.skipWS(); if (p.parseChar(',')) { p.skipWS(); BigInteger to = p.parseIntegerLiteral(); if (to != null) { this.toExcl = to.longValue(); }