From c39c29bf4c52a85d7c83cc8b66ae45e265f9e078 Mon Sep 17 00:00:00 2001 From: Yong He Date: Mon, 28 Apr 2025 11:42:22 -0700 Subject: Add Slang Byte Code generation and interpreter. (#6896) * Add Slang Byte Code generation and interpreter. * Fix compile issues. * format code * More compile fix. * Fix clang issue. * Fix more clang issues. * Another clang fix. * Fix clang issues. * Fix another clang issue. * Fix wasm build. * Update building.md * Fix test-server. * Fix compile error. * Fix bug. --------- Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com> --- tools/slang-test/slangi-tool.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tools/slang-test/slangi-tool.cpp (limited to 'tools/slang-test/slangi-tool.cpp') diff --git a/tools/slang-test/slangi-tool.cpp b/tools/slang-test/slangi-tool.cpp new file mode 100644 index 000000000..ef9d311f7 --- /dev/null +++ b/tools/slang-test/slangi-tool.cpp @@ -0,0 +1,10 @@ +// test-context.cpp +#include "slangi-tool.h" + +#include "../../source/core/slang-exception.h" +#include "../../source/core/slang-io.h" +#include "../../source/core/slang-test-tool-util.h" + +using namespace Slang; + +#include "slangi-tool-impl.h" -- cgit v1.2.3