rhai/src
2023-02-13 08:58:59 +08:00
..
api Refactor to do more pre-calculation work. 2023-02-12 21:50:32 +08:00
ast Support switch range cases for floating-point values. 2023-02-12 23:20:14 +08:00
bin Satisfy clippy. 2023-02-11 00:17:26 +08:00
config Use SusLock to hold pre-calculated indexer hashes. 2022-11-25 11:49:00 +08:00
eval Support switch range cases for floating-point values. 2023-02-12 23:20:14 +08:00
func Support switch range cases for floating-point values. 2023-02-12 23:20:14 +08:00
module Use SmartString for comments. 2023-02-11 23:55:07 +08:00
packages Refactor to do more pre-calculation work. 2023-02-12 21:50:32 +08:00
serde Satisfy clippy. 2022-12-22 17:34:58 +08:00
types Forbid floating-point switch cases after range case. 2023-02-13 08:58:59 +08:00
engine.rs Refactor to do more pre-calculation work. 2023-02-12 21:50:32 +08:00
lib.rs Satisfy clippy. 2023-02-11 00:17:26 +08:00
optimizer.rs Support switch range cases for floating-point values. 2023-02-12 23:20:14 +08:00
parser.rs Forbid floating-point switch cases after range case. 2023-02-13 08:58:59 +08:00
README.md Remove unsound casting functions 2022-02-05 16:29:05 -08:00
reify.rs Improve reify! syntax. 2022-12-09 16:41:01 +08:00
restore.rs Move restore up one level. 2022-12-11 21:50:47 +08:00
tests.rs Allow exporting function pointers from modules. 2022-12-12 18:31:02 +08:00
tokenizer.rs Use debug_assert!. 2023-02-12 00:13:54 +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)