Skip to content

Commit 9a0c8a9

Browse files
committed
Add implementation of StateMachine utility
Claude-generated. Signed-off-by: James M Snell <[email protected]>
1 parent f2a88e2 commit 9a0c8a9

File tree

3 files changed

+5689
-0
lines changed

3 files changed

+5689
-0
lines changed

src/workerd/util/BUILD.bazel

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,3 +387,15 @@ kj_test(
387387
src = "small-set-test.c++",
388388
deps = [":small-set"],
389389
)
390+
391+
wd_cc_library(
392+
name = "state-machine",
393+
hdrs = ["state-machine.h"],
394+
visibility = ["//visibility:public"],
395+
deps = ["@capnp-cpp//src/kj"],
396+
)
397+
398+
kj_test(
399+
src = "state-machine-test.c++",
400+
deps = [":state-machine"],
401+
)

0 commit comments

Comments
 (0)