def __check_For_Function_Name_And_Local_Vars(self, line):
		if PythonLib.startsWith(line, 'FunctionName==='):
			function_Name = line.split('===')[1];		
			local_vars = line.split('===')[2];
			if self.__is_user_code_function(function_Name):				
				depth = str(self.frame_depth).zfill(3) + ") "
				self.frame_depth += 1
				self.functions_including_their_vars[depth + function_Name] = self.__format_local_vars(local_vars)