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:
dfishburn 2014-09-19 19:03:59 +00:00 committed by Colomban Wendling
parent c54c3ad5e8
commit f886f7084a

View File

@ -1654,7 +1654,6 @@ cleanUp:
static void parseUI5 (tokenInfo *const token)
{
tokenInfo *const name = newToken ();
boolean is_inside_class = FALSE;
/*
* SAPUI5 is built on top of jQuery.
* It follows a standard format:
@ -1696,9 +1695,8 @@ static void parseUI5 (tokenInfo *const token)
parseMethods (token, name);
} while (! isType (token, TOKEN_CLOSE_CURLY) );
}
cleanUp:
deleteToken (name);
deleteToken (name);
}
static boolean parseLine (tokenInfo *const token, boolean is_inside_class)