Differences From Artifact [0ac530152e]:
- File
src/OFString+JSONParsing.m
— part of check-in
[a0fd103a0b]
at
2021-03-07 02:36:04
on branch trunk
— Style change: Allow more than 1 argument per line
This is only migrating some places, others will be migrated as they are
touched. (user: js, size: 13049) [annotate] [blame] [check-ins using]
To Artifact [c87ddb2735]:
- File src/OFString+JSONParsing.m — part of check-in [1b82d3bf4f] at 2021-03-07 20:25:21 on branch trunk — *.m: Fold methods into one line where it fits (user: js, size: 13037) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
545 546 547 548 549 550 551 | if ((*pointer)[i] == '\n') (*line)++; break; } } | | < | 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 |
if ((*pointer)[i] == '\n')
(*line)++;
break;
}
}
string = [[OFString alloc] initWithUTF8String: *pointer length: i];
*pointer += i;
@try {
if (hasDecimal)
number = [OFNumber numberWithDouble:
string.doubleValue];
else if ([string isEqual: @"Infinity"])
|
| ︙ | ︙ |