mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
Missing @since tags in autotools
Change-Id: Ifd660175e636a05d8d304b7462099b9a84e298a8
This commit is contained in:
parent
f8b769b2b3
commit
ac06de029f
1 changed files with 11 additions and 4 deletions
|
@ -933,10 +933,14 @@ public class AutoconfParser {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse the arguments for the given macro. These are not interpreted as shell
|
* Parse the arguments for the given macro. These are not interpreted as
|
||||||
* constructs but just as text with possibly more macro expansions inside.
|
* shell constructs but just as text with possibly more macro expansions
|
||||||
|
* inside.
|
||||||
|
*
|
||||||
* @param macro
|
* @param macro
|
||||||
* @return final token (')')
|
* @return final token (')')
|
||||||
|
*
|
||||||
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
protected Token parseMacroArguments(AutoconfMacroElement macro) {
|
protected Token parseMacroArguments(AutoconfMacroElement macro) {
|
||||||
Token argStart = null;
|
Token argStart = null;
|
||||||
|
@ -1018,14 +1022,17 @@ public class AutoconfParser {
|
||||||
return token;
|
return token;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @since 2.0 */
|
||||||
|
|
||||||
protected void handleError(Token token, String message) {
|
protected void handleError(Token token, String message) {
|
||||||
handleMessage(token, message, IMarker.SEVERITY_ERROR);
|
handleMessage(token, message, IMarker.SEVERITY_ERROR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @since 2.0 */
|
||||||
protected void handleWarning(Token token, String message) {
|
protected void handleWarning(Token token, String message) {
|
||||||
handleMessage(token, message, IMarker.SEVERITY_WARNING);
|
handleMessage(token, message, IMarker.SEVERITY_WARNING);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @since 2.0 */
|
||||||
protected void handleMessage(Token token, String message, int severity) {
|
protected void handleMessage(Token token, String message, int severity) {
|
||||||
if (errorHandler != null) {
|
if (errorHandler != null) {
|
||||||
int lineNumber = 0;
|
int lineNumber = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue