Javascript parser: Removed warning of unused variable is_inside_class and cleanUp
git-svn-id: https://svn.code.sf.net/p/ctags/code/trunk@815 c5d04d22-be80-434c-894e-aa346cc9e8e8
This commit is contained in:
parent
c54c3ad5e8
commit
f886f7084a
@ -1654,7 +1654,6 @@ cleanUp:
|
|||||||
static void parseUI5 (tokenInfo *const token)
|
static void parseUI5 (tokenInfo *const token)
|
||||||
{
|
{
|
||||||
tokenInfo *const name = newToken ();
|
tokenInfo *const name = newToken ();
|
||||||
boolean is_inside_class = FALSE;
|
|
||||||
/*
|
/*
|
||||||
* SAPUI5 is built on top of jQuery.
|
* SAPUI5 is built on top of jQuery.
|
||||||
* It follows a standard format:
|
* It follows a standard format:
|
||||||
@ -1696,9 +1695,8 @@ static void parseUI5 (tokenInfo *const token)
|
|||||||
parseMethods (token, name);
|
parseMethods (token, name);
|
||||||
} while (! isType (token, TOKEN_CLOSE_CURLY) );
|
} while (! isType (token, TOKEN_CLOSE_CURLY) );
|
||||||
}
|
}
|
||||||
cleanUp:
|
|
||||||
deleteToken (name);
|
|
||||||
|
|
||||||
|
deleteToken (name);
|
||||||
}
|
}
|
||||||
|
|
||||||
static boolean parseLine (tokenInfo *const token, boolean is_inside_class)
|
static boolean parseLine (tokenInfo *const token, boolean is_inside_class)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user