├── LICENSE ├── README.md ├── README.old.md ├── azure-pipelines.yml ├── shene.nimble ├── src └── shene │ ├── mcall.nim │ ├── ucall.nim │ └── utils.nim └── tests ├── config.nims ├── nt_6.nim ├── t_1.nim ├── t_2.nim ├── t_3.nim ├── t_4.nim ├── t_5.nim └── t_6 ├── a.nim └── b.nim /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/README.md -------------------------------------------------------------------------------- /README.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/README.old.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /shene.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/shene.nimble -------------------------------------------------------------------------------- /src/shene/mcall.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/src/shene/mcall.nim -------------------------------------------------------------------------------- /src/shene/ucall.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/src/shene/ucall.nim -------------------------------------------------------------------------------- /src/shene/utils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/src/shene/utils.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | switch("path", "$projectDir/../src") -------------------------------------------------------------------------------- /tests/nt_6.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/tests/nt_6.nim -------------------------------------------------------------------------------- /tests/t_1.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/tests/t_1.nim -------------------------------------------------------------------------------- /tests/t_2.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/tests/t_2.nim -------------------------------------------------------------------------------- /tests/t_3.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/tests/t_3.nim -------------------------------------------------------------------------------- /tests/t_4.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/tests/t_4.nim -------------------------------------------------------------------------------- /tests/t_5.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/tests/t_5.nim -------------------------------------------------------------------------------- /tests/t_6/a.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/tests/t_6/a.nim -------------------------------------------------------------------------------- /tests/t_6/b.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/shene/HEAD/tests/t_6/b.nim --------------------------------------------------------------------------------