def generate_kotlin_internal()

in library/scripts/find_movable_strings.py [0:0]


def generate_kotlin_internal(string_pack_ids, method_name):
    result = []
    result += "fun %s(): Array<Int> {\n" % method_name
    result += " " * 4 + "intArrayOf(\n"
    for line in string_pack_ids:
        result += line + "\n"
    result += " " * 4 + ")\n"
    result += "}\n"
    result += "\n"
    return result