1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Missing @since tags in autotools

Change-Id: Ifd660175e636a05d8d304b7462099b9a84e298a8
This commit is contained in:
Marc Khouzam 2015-10-21 13:14:32 -04:00
parent f8b769b2b3
commit ac06de029f

View file

@ -933,10 +933,14 @@ public class AutoconfParser {
}
/**
* Parse the arguments for the given macro. These are not interpreted as shell
* constructs but just as text with possibly more macro expansions inside.
* Parse the arguments for the given macro. These are not interpreted as
* shell constructs but just as text with possibly more macro expansions
* inside.
*
* @param macro
* @return final token (')')
*
* @since 2.0
*/
protected Token parseMacroArguments(AutoconfMacroElement macro) {
Token argStart = null;
@ -1018,14 +1022,17 @@ public class AutoconfParser {
return token;
}
/** @since 2.0 */
protected void handleError(Token token, String message) {
handleMessage(token, message, IMarker.SEVERITY_ERROR);
}
/** @since 2.0 */
protected void handleWarning(Token token, String message) {
handleMessage(token, message, IMarker.SEVERITY_WARNING);
}
/** @since 2.0 */
protected void handleMessage(Token token, String message, int severity) {
if (errorHandler != null) {
int lineNumber = 0;