load(
    "//transpiler/javatests/com/google/j2cl/readable:readable_example.bzl",
    "readable_example",
)

package(
    default_applicable_licenses = ["//:j2cl_license"],
    licenses = ["notice"],
)

readable_example(
    srcs = glob(["*.java"]),
    wasm_entry_points = [
        "wasmentrypoints.WasmEntryPoints#singleMatchedEntryPoint",
        ".*#matchedEntryPointPattern.*",
        "wasmentrypoints.WasmEntryPoints#stringConversionEntryPoint",
    ],
)
