* @param func is the function node do be analyzed
* @param func_def is the definition for func
*/
private void verifyFunctionNamespace(FunctionNode func, FunctionDefinition func_def)
{
INamespaceDecorationNode nsNode = func.getActualNamespaceNode();
// if we have no "actual" node, then there is no namespace in front of our function
if (nsNode != null)
{
boolean isLanguateNS = false;
// We need a special check for "internal", because tree building has already munged innternal to
// make it just look like the default. But here we need to know what it really is
if (INamespaceConstants.internal_.equals(nsNode.getName()))
{
isLanguateNS = true;
}
else