[TS] Drop references to `this` in static `UtilMethods` functions
authorMatt Corallo <git@bluematt.me>
Sat, 8 Jan 2022 03:55:05 +0000 (03:55 +0000)
committerMatt Corallo <git@bluematt.me>
Sat, 8 Jan 2022 04:12:35 +0000 (04:12 +0000)
genbindings.py

index 06827cf02b5abb93fe254d4a0c3dffa2ad67517e..5fd2062817370ec9c15134c4a113ccae1a9829fc 100755 (executable)
@@ -536,7 +536,7 @@ with open(sys.argv[1]) as in_h, open(f"{sys.argv[2]}/bindings{consts.file_ext}",
                   or method_name.endswith("_read"))):
             out_java_struct = open(f"{sys.argv[3]}/structs/UtilMethods{consts.file_ext}", "a")
             for line in out_java_struct_delta.splitlines():
-                if not line.strip().startswith("this."):
+                if "this" not in line:
                     out_java_struct.write(line + "\n")
                 else:
                     out_java_struct.write("\t\t// " + line.strip() + "\n")