Rename WASM bindings function helper file

PiperOrigin-RevId: 827897836
Change-Id: Ifb13ebaf54dacabc2a3ed8a8ea4244ecea2a8f41
This commit is contained in:
Matija Kecman
2025-11-04 03:56:08 -08:00
committed by Copybara-Service
parent 12a31674a3
commit f808632cf8
5 changed files with 34 additions and 35 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ from introspect import structs as introspect_structs
from wasm.codegen.helpers import common
from wasm.codegen.helpers import constants
from wasm.codegen.helpers import function_utils
from wasm.codegen.helpers import functions
def _get_resource_content(file_path: str) -> str:
@@ -89,7 +89,7 @@ class BindingCoverageTest(absltest.TestCase):
excluded_functions = {
name
for name in all_functions
if function_utils.is_excluded_function_name(name)
if functions.is_excluded_function_name(name)
}
bound_functions = _get_bound_functions_from_cc()