-
Notifications
You must be signed in to change notification settings - Fork 821
Generate methodsynopses from stubs for ext/intl (IntlCalendar) #996
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
&reftitle.returnvalues; | ||
<para> | ||
An ICU error code indicating either success, failure or a warning. | ||
An ICU error code indicating either success, failure or a warning. Returns &false; on failure. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An ICU error code indicating either success, failure or a warning. Returns &false; on failure. | |
An ICU error code indicating either success, failure or a warning. Returns &false; when there is no error to fetch. |
Or something similar?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, yes, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it true actually?
/* Fetch the object (without resetting its last error code ). */
co = Z_INTL_CALENDAR_P(object);
if (co == NULL)
RETURN_FALSE;
So it returns false when the Calendar_object
cannot be retrieved, doesn't it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, well I would have expected this to throw an Error but oh well. (actually maybe we need to check what the macro does)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checked it :) It returns the struct
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is still one remaining comment from the previous review which does need to be addressed but other than the couple of other nits it looks alright.
Has the last commit addressed your comments, right? Can I merge it? |
No description provided.