2023-06-24 19:14:18 +08:00
..
2023-05-19 13:29:51 +08:00
2023-05-07 22:25:01 +08:00
2023-02-20 10:06:26 +08:00
2023-06-15 10:34:54 +08:00
2023-05-10 23:07:37 +08:00
2023-05-19 13:29:51 +08:00
2023-04-28 15:05:31 +08:00
2023-05-13 09:31:57 +08:00
2023-06-24 19:14:18 +08:00
2023-04-05 23:15:55 +08:00
2023-05-07 22:25:01 +08:00
2023-03-25 21:13:34 +08:00
2023-05-07 22:25:01 +08:00
2023-04-12 12:09:14 +08:00
2023-03-07 16:52:37 +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
defer.rs Utilities for deferred clean-up of resources
reify.rs Utilities for making generic types concrete
tests.rs Unit tests (not integration tests, which are in the main tests sub-directory)

Sub-Directories

Sub-directory Description
config Configuration
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 Registering and calling functions (native Rust and script-defined)
eval AST evaluation
serde Support for serde and metadata
bin Pre-built CLI binaries