public bool isNavigationCall(IMethodCall call)
        {
            ITypeReference callType = call.MethodToCall.ContainingType;

            if (!callType.isNavigationServiceClass(host))
            {
                return(false);
            }

            return(NAV_CALLS.Contains(call.MethodToCall.Name.Value));
        }