[Webkit-unassigned] [Bug 158123] prepare-ChangeLog not picking up changes in a particular class
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Jun 1 12:04:53 PDT 2016
https://bugs.webkit.org/show_bug.cgi?id=158123
--- Comment #1 from Jason Marcell <jmarcell at apple.com> ---
We have a method that looks something like this and prepareChangelog isnât smart enough to know that there are preprocessor macros in play here so it thinks the curly braces are all mismatched, thus hindering its ability to understand where the method ends and the next method begins.
- (void)bar:(void (^)())block
{
#if __WHATEVER >= 12345
[blip foo:^(Fuzz *bar) {
if (buzz) {
dispatch_async(dispatch_get_main_queue(), ^{
#else
[blip foo:^(NSData *bing) {
if (buzz) {
dispatch_async(dispatch_get_main_queue(), ^{
_blah = baz.firstObject;
#endif
});
}
}];
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160601/8b9cb724/attachment.html>
More information about the webkit-unassigned
mailing list