1"""Macro used with bzl_test 2 3For more information, please see `bzl_test.bzl`. 4""" 5 6load("//:def.bzl", "DEFAULT_LANGUAGES") 7 8def macro_with_doc(name): 9 """This macro does nothing. 10 11 Args: 12 name: A `string` value. 13 """ 14 if name == None: 15 return None 16 return DEFAULT_LANGUAGES