rhai/src
2022-12-03 16:29:19 +08:00
..
api Hard code constant checking. 2022-12-03 16:20:13 +08:00
ast Hard code constant checking. 2022-12-03 16:20:13 +08:00
bin Capture global module docs in JSON. 2022-12-01 23:35:26 +08:00
config Use SusLock to hold pre-calculated indexer hashes. 2022-11-25 11:49:00 +08:00
eval Hard code constant checking. 2022-12-03 16:20:13 +08:00
func Hard code constant checking. 2022-12-03 16:20:13 +08:00
module Hard code constant checking. 2022-12-03 16:20:13 +08:00
packages Hard code constant checking. 2022-12-03 16:20:13 +08:00
serde Capture global module docs in JSON. 2022-12-01 23:35:26 +08:00
types code cleanup. 2022-12-01 14:24:08 +08:00
engine.rs Fix builds. 2022-12-03 12:08:35 +08:00
lib.rs Code cleanup and refactor. 2022-11-28 23:24:22 +08:00
optimizer.rs Hard code constant checking. 2022-12-03 16:20:13 +08:00
parser.rs Fix builds. 2022-12-03 16:29:19 +08:00
README.md Remove unsound casting functions 2022-02-05 16:29:05 -08:00
reify.rs Shut up clippy. 2022-08-27 16:26:41 +08:00
tests.rs Move lib into global. 2022-11-10 11:49:10 +08:00
tokenizer.rs Process block comments better. 2022-12-02 14:06:31 +08:00

Source Structure

Root Sources

Source file Description
lib.rs Crate root
engine.rs The scripting engine, defines the Engine type
tokenizer.rs Script tokenizer/lexer
parser.rs Script parser
optimizer.rs Script optimizer
reify.rs Utilities for making generic types concrete
tests.rs Unit tests (not integration tests, which are in the rhai/tests sub-directory)

Sub-Directories

Sub-directory Description
types Common data types (e.g. Dynamic, errors)
api Public API for the scripting engine
ast AST definition
module Support for modules
packages Pre-defined packages
func Support for function calls
eval Evaluation engine
serde Support for serde
bin Pre-built CLI binaries (e.g. rhai-run, rhai-repl)