├── .gitignore ├── .travis.yml ├── Cargo.toml ├── commandManual.md ├── license.txt ├── readme.md ├── treeflection ├── Cargo.toml ├── src │ ├── context_vec.rs │ ├── keyed_context_vec.rs │ ├── lib.rs │ ├── node.rs │ ├── node_runner.rs │ └── node_token.rs └── tests │ ├── unittest_array.rs │ ├── unittest_collections.rs │ ├── unittest_command.rs │ ├── unittest_context_vec.rs │ ├── unittest_keyed_context_vec.rs │ ├── unittest_map.rs │ ├── unittest_numeric.rs │ └── unittest_primitive.rs └── treeflection_derive ├── Cargo.toml ├── src └── lib.rs ├── test_gen_source └── gen_source.sh └── tests └── test.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/Cargo.toml -------------------------------------------------------------------------------- /commandManual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/commandManual.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/readme.md -------------------------------------------------------------------------------- /treeflection/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/Cargo.toml -------------------------------------------------------------------------------- /treeflection/src/context_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/src/context_vec.rs -------------------------------------------------------------------------------- /treeflection/src/keyed_context_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/src/keyed_context_vec.rs -------------------------------------------------------------------------------- /treeflection/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/src/lib.rs -------------------------------------------------------------------------------- /treeflection/src/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/src/node.rs -------------------------------------------------------------------------------- /treeflection/src/node_runner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/src/node_runner.rs -------------------------------------------------------------------------------- /treeflection/src/node_token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/src/node_token.rs -------------------------------------------------------------------------------- /treeflection/tests/unittest_array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/tests/unittest_array.rs -------------------------------------------------------------------------------- /treeflection/tests/unittest_collections.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/tests/unittest_collections.rs -------------------------------------------------------------------------------- /treeflection/tests/unittest_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/tests/unittest_command.rs -------------------------------------------------------------------------------- /treeflection/tests/unittest_context_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/tests/unittest_context_vec.rs -------------------------------------------------------------------------------- /treeflection/tests/unittest_keyed_context_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/tests/unittest_keyed_context_vec.rs -------------------------------------------------------------------------------- /treeflection/tests/unittest_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/tests/unittest_map.rs -------------------------------------------------------------------------------- /treeflection/tests/unittest_numeric.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/tests/unittest_numeric.rs -------------------------------------------------------------------------------- /treeflection/tests/unittest_primitive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection/tests/unittest_primitive.rs -------------------------------------------------------------------------------- /treeflection_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection_derive/Cargo.toml -------------------------------------------------------------------------------- /treeflection_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection_derive/src/lib.rs -------------------------------------------------------------------------------- /treeflection_derive/test_gen_source/gen_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection_derive/test_gen_source/gen_source.sh -------------------------------------------------------------------------------- /treeflection_derive/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rukai/treeflection/HEAD/treeflection_derive/tests/test.rs --------------------------------------------------------------------------------