├── .clang-format ├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── CMakeLists.txt ├── Doxyfile ├── Jenkinsfile ├── LICENSE_1_0.txt ├── Lua-CMakeLists.txt ├── README.md ├── benchmark ├── benchmark.cpp ├── benchmark_function.cpp └── benchmark_function.hpp ├── cmake └── FindLua.cmake ├── codecov.yml ├── docs ├── Makefile ├── api_reference │ ├── index.rst │ ├── lua_function.rst │ ├── lua_ref.rst │ ├── lua_table.rst │ ├── lua_thread.rst │ ├── lua_userdata.rst │ ├── luaref.rst │ ├── metatable.rst │ ├── preprocessor_option.rst │ ├── standard.rst │ └── state.rst ├── conf.py ├── getting_started │ ├── class_bindings.rst │ ├── index.rst │ ├── requirements.rst │ └── tutorial.rst ├── index.rst ├── introduction │ └── index.rst └── make.bat ├── examples ├── CMakeLists.txt ├── hello_lua_module.bat ├── hello_lua_module.cpp ├── hello_lua_module.sh ├── hello_lua_module_exec.lua ├── hello_lua_module_experimental.bat ├── hello_lua_module_experimental.cpp ├── hello_lua_module_experimental.sh ├── hello_lua_module_experimental_exec.lua ├── hello_world.cpp └── lua_exec.cpp ├── include └── kaguya │ ├── another_binding_api.hpp │ ├── compatibility.hpp │ ├── config.hpp │ ├── detail │ ├── lua_function_def.hpp │ ├── lua_ref_impl.hpp │ ├── lua_table_def.hpp │ └── lua_variant_def.hpp │ ├── error_handler.hpp │ ├── exception.hpp │ ├── function_tuple_def.hpp │ ├── kaguya.hpp │ ├── lua_ref.hpp │ ├── lua_ref_function.hpp │ ├── lua_ref_table.hpp │ ├── metatable.hpp │ ├── native_function.hpp │ ├── native_function_cxx03.hpp │ ├── native_function_cxx11.hpp │ ├── object.hpp │ ├── optional.hpp │ ├── preprocess.hpp │ ├── preprocess_repeate.hpp │ ├── push_any.hpp │ ├── push_tuple.hpp │ ├── ref_tuple.hpp │ ├── state.hpp │ ├── traits.hpp │ ├── type.hpp │ ├── utility.hpp │ ├── utility_cxx03.hpp │ └── utility_cxx11.hpp ├── some_lua_version_test.sh ├── test ├── CMakeLists.txt ├── lua │ ├── assign_value.lua │ ├── return_number.lua │ ├── runtime_error.lua │ └── syntax_error.lua ├── shared_library_test │ ├── CMakeLists.txt │ ├── test_shared_class.hpp │ ├── test_shared_class_main.cpp │ ├── test_shared_class_reg.cpp │ └── test_shared_class_use.cpp ├── test_01_primitive.cpp ├── test_02_classreg.cpp ├── test_03_function.cpp ├── test_04_lua_function.cpp ├── test_05_lua_ref.cpp ├── test_06_state.cpp ├── test_07_vector_map_to_luatable.cpp ├── test_08_optional.cpp ├── test_09_utility.cpp ├── test_10_loadfile.cpp ├── test_11_cxx11_feature.cpp ├── test_12_push_any.cpp ├── test_13_another_binding_api.cpp ├── test_14_error_message.cpp ├── test_20_max_arg_20.cpp ├── test_main.cpp └── test_util.hpp ├── test_runner.py └── utils ├── Makefile ├── generate_one_header.py └── generate_preprocess_macro.py /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: LLVM 3 | SortIncludes: false 4 | Standard: Cpp03 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/Doxyfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/LICENSE_1_0.txt -------------------------------------------------------------------------------- /Lua-CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/Lua-CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/benchmark/benchmark.cpp -------------------------------------------------------------------------------- /benchmark/benchmark_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/benchmark/benchmark_function.cpp -------------------------------------------------------------------------------- /benchmark/benchmark_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/benchmark/benchmark_function.hpp -------------------------------------------------------------------------------- /cmake/FindLua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/cmake/FindLua.cmake -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api_reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/index.rst -------------------------------------------------------------------------------- /docs/api_reference/lua_function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/lua_function.rst -------------------------------------------------------------------------------- /docs/api_reference/lua_ref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/lua_ref.rst -------------------------------------------------------------------------------- /docs/api_reference/lua_table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/lua_table.rst -------------------------------------------------------------------------------- /docs/api_reference/lua_thread.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/lua_thread.rst -------------------------------------------------------------------------------- /docs/api_reference/lua_userdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/lua_userdata.rst -------------------------------------------------------------------------------- /docs/api_reference/luaref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/luaref.rst -------------------------------------------------------------------------------- /docs/api_reference/metatable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/metatable.rst -------------------------------------------------------------------------------- /docs/api_reference/preprocessor_option.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/preprocessor_option.rst -------------------------------------------------------------------------------- /docs/api_reference/standard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/standard.rst -------------------------------------------------------------------------------- /docs/api_reference/state.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/api_reference/state.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting_started/class_bindings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/getting_started/class_bindings.rst -------------------------------------------------------------------------------- /docs/getting_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/getting_started/index.rst -------------------------------------------------------------------------------- /docs/getting_started/requirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/getting_started/requirements.rst -------------------------------------------------------------------------------- /docs/getting_started/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/getting_started/tutorial.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/introduction/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/introduction/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_lua_module.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/hello_lua_module.bat -------------------------------------------------------------------------------- /examples/hello_lua_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/hello_lua_module.cpp -------------------------------------------------------------------------------- /examples/hello_lua_module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/hello_lua_module.sh -------------------------------------------------------------------------------- /examples/hello_lua_module_exec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/hello_lua_module_exec.lua -------------------------------------------------------------------------------- /examples/hello_lua_module_experimental.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/hello_lua_module_experimental.bat -------------------------------------------------------------------------------- /examples/hello_lua_module_experimental.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/hello_lua_module_experimental.cpp -------------------------------------------------------------------------------- /examples/hello_lua_module_experimental.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/hello_lua_module_experimental.sh -------------------------------------------------------------------------------- /examples/hello_lua_module_experimental_exec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/hello_lua_module_experimental_exec.lua -------------------------------------------------------------------------------- /examples/hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/hello_world.cpp -------------------------------------------------------------------------------- /examples/lua_exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/examples/lua_exec.cpp -------------------------------------------------------------------------------- /include/kaguya/another_binding_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/another_binding_api.hpp -------------------------------------------------------------------------------- /include/kaguya/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/compatibility.hpp -------------------------------------------------------------------------------- /include/kaguya/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/config.hpp -------------------------------------------------------------------------------- /include/kaguya/detail/lua_function_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/detail/lua_function_def.hpp -------------------------------------------------------------------------------- /include/kaguya/detail/lua_ref_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/detail/lua_ref_impl.hpp -------------------------------------------------------------------------------- /include/kaguya/detail/lua_table_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/detail/lua_table_def.hpp -------------------------------------------------------------------------------- /include/kaguya/detail/lua_variant_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/detail/lua_variant_def.hpp -------------------------------------------------------------------------------- /include/kaguya/error_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/error_handler.hpp -------------------------------------------------------------------------------- /include/kaguya/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/exception.hpp -------------------------------------------------------------------------------- /include/kaguya/function_tuple_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/function_tuple_def.hpp -------------------------------------------------------------------------------- /include/kaguya/kaguya.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/kaguya.hpp -------------------------------------------------------------------------------- /include/kaguya/lua_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/lua_ref.hpp -------------------------------------------------------------------------------- /include/kaguya/lua_ref_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/lua_ref_function.hpp -------------------------------------------------------------------------------- /include/kaguya/lua_ref_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/lua_ref_table.hpp -------------------------------------------------------------------------------- /include/kaguya/metatable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/metatable.hpp -------------------------------------------------------------------------------- /include/kaguya/native_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/native_function.hpp -------------------------------------------------------------------------------- /include/kaguya/native_function_cxx03.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/native_function_cxx03.hpp -------------------------------------------------------------------------------- /include/kaguya/native_function_cxx11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/native_function_cxx11.hpp -------------------------------------------------------------------------------- /include/kaguya/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/object.hpp -------------------------------------------------------------------------------- /include/kaguya/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/optional.hpp -------------------------------------------------------------------------------- /include/kaguya/preprocess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/preprocess.hpp -------------------------------------------------------------------------------- /include/kaguya/preprocess_repeate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/preprocess_repeate.hpp -------------------------------------------------------------------------------- /include/kaguya/push_any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/push_any.hpp -------------------------------------------------------------------------------- /include/kaguya/push_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/push_tuple.hpp -------------------------------------------------------------------------------- /include/kaguya/ref_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/ref_tuple.hpp -------------------------------------------------------------------------------- /include/kaguya/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/state.hpp -------------------------------------------------------------------------------- /include/kaguya/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/traits.hpp -------------------------------------------------------------------------------- /include/kaguya/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/type.hpp -------------------------------------------------------------------------------- /include/kaguya/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/utility.hpp -------------------------------------------------------------------------------- /include/kaguya/utility_cxx03.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/utility_cxx03.hpp -------------------------------------------------------------------------------- /include/kaguya/utility_cxx11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/include/kaguya/utility_cxx11.hpp -------------------------------------------------------------------------------- /some_lua_version_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/some_lua_version_test.sh -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/lua/assign_value.lua: -------------------------------------------------------------------------------- 1 | value = 1 -------------------------------------------------------------------------------- /test/lua/return_number.lua: -------------------------------------------------------------------------------- 1 | return 1 2 | -------------------------------------------------------------------------------- /test/lua/runtime_error.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/lua/runtime_error.lua -------------------------------------------------------------------------------- /test/lua/syntax_error.lua: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /test/shared_library_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/shared_library_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/shared_library_test/test_shared_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/shared_library_test/test_shared_class.hpp -------------------------------------------------------------------------------- /test/shared_library_test/test_shared_class_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/shared_library_test/test_shared_class_main.cpp -------------------------------------------------------------------------------- /test/shared_library_test/test_shared_class_reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/shared_library_test/test_shared_class_reg.cpp -------------------------------------------------------------------------------- /test/shared_library_test/test_shared_class_use.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/shared_library_test/test_shared_class_use.cpp -------------------------------------------------------------------------------- /test/test_01_primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_01_primitive.cpp -------------------------------------------------------------------------------- /test/test_02_classreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_02_classreg.cpp -------------------------------------------------------------------------------- /test/test_03_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_03_function.cpp -------------------------------------------------------------------------------- /test/test_04_lua_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_04_lua_function.cpp -------------------------------------------------------------------------------- /test/test_05_lua_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_05_lua_ref.cpp -------------------------------------------------------------------------------- /test/test_06_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_06_state.cpp -------------------------------------------------------------------------------- /test/test_07_vector_map_to_luatable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_07_vector_map_to_luatable.cpp -------------------------------------------------------------------------------- /test/test_08_optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_08_optional.cpp -------------------------------------------------------------------------------- /test/test_09_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_09_utility.cpp -------------------------------------------------------------------------------- /test/test_10_loadfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_10_loadfile.cpp -------------------------------------------------------------------------------- /test/test_11_cxx11_feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_11_cxx11_feature.cpp -------------------------------------------------------------------------------- /test/test_12_push_any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_12_push_any.cpp -------------------------------------------------------------------------------- /test/test_13_another_binding_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_13_another_binding_api.cpp -------------------------------------------------------------------------------- /test/test_14_error_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_14_error_message.cpp -------------------------------------------------------------------------------- /test/test_20_max_arg_20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_20_max_arg_20.cpp -------------------------------------------------------------------------------- /test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_main.cpp -------------------------------------------------------------------------------- /test/test_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test/test_util.hpp -------------------------------------------------------------------------------- /test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/test_runner.py -------------------------------------------------------------------------------- /utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/utils/Makefile -------------------------------------------------------------------------------- /utils/generate_one_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/utils/generate_one_header.py -------------------------------------------------------------------------------- /utils/generate_preprocess_macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoren/kaguya/HEAD/utils/generate_preprocess_macro.py --------------------------------------------------------------------------------