Stephen Chung
187a20fd8b
Refactor OptimizationLevel.
2022-02-07 21:03:39 +08:00
Stephen Chung
556b2393f5
Fix position of function calls.
2022-02-07 16:02:49 +08:00
Stephen Chung
bd9519e96b
Remove reify_dynamic.
2022-02-07 12:02:00 +08:00
Stephen Chung
becbfa8930
Fix errors.
2022-02-06 23:02:59 +08:00
Stephen Chung
1ccbda1050
Merge branch 'master' of https://github.com/schungx/rhai
2022-02-06 21:24:55 +08:00
Stephen Chung
cfbf0397a6
Better position of assignment errors.
2022-02-06 21:24:02 +08:00
Nathan Kent
86d86a85e4
Remove unsound casting functions
...
The casting functions in `unsafe.rs` were unsound (i.e., they allowed
safe code to cause undefined behavior). While they did appear to be used
in a way that wouldn't cause UB the fact that there exists unsound
functions is unsettling.
This commit removes those functions and replaces it with a macro that
performs the same reification - the difference is that the macro call
will also include the checks which are required to prevent UB. A macro
was chosen instead of a function for two reasons:
1. A macro can keep the same code generation whereas a function would
require going through an `Option` which has negative impacts on code
generation (niche values cause poor DCE).
2. There exist other `unsafe` code blocks in the crate and an attempt to
make Rhai 100% safe is completely out-of-scope for this merge
request, so we may as well use `unsafe` in the macro.
Regarding (2) above, I may come back at a later date with a 100% safe
`reify` function but only once the other `unsafe` blocks are removed.
For posterity, said function would look something like:
```rust
fn reify<A: Any, C>(value: A) -> Option<C> {
let mut v = Some(value);
let v: &mut dyn Any = &mut v;
v.downcast_mut::<Option<C>>().map(Option::take)
}
```
2022-02-05 16:29:05 -08:00
Stephen Chung
6a740a9fa1
Fix no_module build.
2022-02-04 23:08:09 +08:00
Stephen Chung
be9356727f
Add variable definition filter.
2022-02-04 22:59:41 +08:00
Stephen Chung
936dc01e39
Pass level to var resolver.
2022-02-04 22:16:12 +08:00
Stephen Chung
5aee06674f
Fix no-std build.
2022-02-04 16:38:01 +08:00
Stephen Chung
f09abd7ab3
Fix builds.
2022-02-04 13:31:33 +08:00
Stephen Chung
3be27746e0
Add allow_shadowing.
2022-02-04 13:20:47 +08:00
Stephen Chung
6c1c8bc538
Improve position display.
2022-02-04 12:04:33 +08:00
Stephen Chung
345a060672
Fix type name display.
2022-02-03 23:54:53 +08:00
Stephen Chung
419ee45043
Add bin-features to pull in all features for bin tools.
2022-02-03 21:17:47 +08:00
Stephen Chung
9fa6839380
Simplify debugger calls.
2022-02-03 11:56:08 +08:00
Stephen Chung
8322e62c18
Fix function exit trigger and add function enter trigger.
2022-02-02 22:42:33 +08:00
Stephen Chung
db2f1a601c
Make call stack available also under no_function.
2022-02-02 15:07:22 +08:00
Stephen Chung
e0ed713bb6
Fix builds.
2022-02-02 14:57:30 +08:00
Stephen Chung
4a80483749
Support call stack and FunctionExit for native functions.
2022-02-02 14:47:35 +08:00
Stephen Chung
7163a7331a
Add commands and status to debugging interface.
2022-02-01 22:30:05 +08:00
Stephen Chung
dca0185323
Change on_debugger to register_debugger.
2022-02-01 14:07:06 +08:00
Stephen Chung
389bb9bf66
Add history recall to repl.
2022-01-31 21:02:36 +08:00
Stephen Chung
f1458e79e0
Improve AST debug display.
2022-01-31 13:38:27 +08:00
Stephen Chung
ff06bb98a1
Fix no_module build.
2022-01-30 23:28:02 +08:00
Stephen Chung
7b92a80c32
Fix encapsulated environment in module functions.
2022-01-30 17:27:13 +08:00
Stephen Chung
8fc80ecd10
Fix formatting.
2022-01-30 11:21:45 +08:00
Stephen Chung
06214cf499
Add key bindings to repl.
2022-01-30 09:42:04 +08:00
Stephen Chung
0378c822e1
Use required-features for bin tools.
2022-01-30 09:41:51 +08:00
Stephen Chung
2cfd426aaf
Merge branch 'rustyline' of https://github.com/rhaiscript/rhai
2022-01-29 15:59:24 +08:00
Stephen Chung
19ef92a3f3
Fix builds.
2022-01-29 13:37:58 +08:00
Stephen Chung
6b02dde848
Gate dead code for no_module.
2022-01-29 11:09:43 +08:00
Jonathan Strong
16f13960f4
poc: adds rustyline to rhai-repl
2022-01-28 20:29:25 -05:00
Stephen Chung
4ee6657b9d
Fix no_function build.
2022-01-28 22:37:59 +08:00
Stephen Chung
cd4335a16f
Fix builds.
2022-01-28 22:11:22 +08:00
Stephen Chung
c397a6dcb5
Fix sync build.
2022-01-28 22:07:49 +08:00
Stephen Chung
c93e94c7cd
Fix builds.
2022-01-28 21:35:16 +08:00
Stephen Chung
66af69aaff
Refactor and add state to debugger.
2022-01-28 18:59:18 +08:00
Stephen Chung
20baae71d4
Factor tuples into structs to aid in understanding.
2022-01-28 10:11:40 +08:00
Stephen Chung
b86dd3f586
Add missing data size check.
2022-01-28 08:28:31 +08:00
Stephen Chung
b9f2fdb635
Rename AST option flags.
2022-01-28 08:28:17 +08:00
Stephen Chung
09d03d07ed
Fix sync build.
2022-01-28 08:00:46 +08:00
Stephen Chung
e476929597
Remove Box on callback traits.
2022-01-27 23:55:32 +08:00
Stephen Chung
64de20bcd3
Remove warnings.
2022-01-27 16:58:11 +08:00
Stephen Chung
dd937e657d
Fix builds.
2022-01-27 16:58:11 +08:00
Stephen Chung
197cdedaf4
Add commands to rhai-dbg.
2022-01-27 16:58:11 +08:00
Stephen Chung
d75c3e1592
Change stack trace object property name.
2022-01-27 16:58:11 +08:00
Stephen Chung
edcc95e205
Skip transitive nodes for debugger.
2022-01-27 16:58:11 +08:00
Stephen Chung
538af8caee
Scope::clone_visible clones value access mode also.
2022-01-27 16:58:11 +08:00
Stephen Chung
14e42f436f
Make scan_imports_raw public.
2022-01-27 16:58:11 +08:00
Stephen Chung
c8357de1c8
Fix feature builds.
2022-01-27 16:58:11 +08:00
Stephen Chung
3c2ac7f0c5
Add ability for debugger to throw errors.
2022-01-27 16:58:11 +08:00
Stephen Chung
b4f679d35f
Add property breakpoints.
2022-01-27 16:58:11 +08:00
Stephen Chung
cc64ae3939
Fix no-std build.
2022-01-27 16:58:11 +08:00
Stephen Chung
efddc7e91d
Add breaking at line.
2022-01-27 16:58:11 +08:00
Stephen Chung
2dc1fea40a
Remove non_snake_case warnings.
2022-01-27 16:58:11 +08:00
Stephen Chung
aee35e5f20
Add DebuggingPackage.
2022-01-27 16:58:11 +08:00
Stephen Chung
0e5f62574d
Fix warnings.
2022-01-27 16:58:11 +08:00
Stephen Chung
3cec9751bf
Remove call stack under no_function.
2022-01-27 16:58:11 +08:00
Stephen Chung
40aaab60c3
Refine debugger.
2022-01-27 16:58:11 +08:00
Stephen Chung
fc87dec128
Add debugging interface.
2022-01-27 16:58:11 +08:00
Stephen Chung
69dab31617
Remove need for default features in dependencies.
2022-01-27 08:22:20 +08:00
Stephen Chung
c79f1e44e4
Refine position display of indexing.
2022-01-25 10:56:22 +08:00
Stephen Chung
d8a6b93f43
Fix off-by-one position error after comment line.
2022-01-24 16:06:41 +08:00
Stephen Chung
2b2685e387
Add optimize command to REPL.
2022-01-24 15:50:25 +08:00
Stephen Chung
8d34ffb9f5
Fix bug in try block.
2022-01-24 08:34:21 +08:00
Stephen Chung
97be256a1a
Fix bug with optimizing op-assignment operators.
2022-01-23 21:09:37 +08:00
Stephen Chung
fb0b071fe0
Add lifetimes to GlobalRuntimeState and EvalState for future needs.
2022-01-22 17:48:07 +08:00
Stephen Chung
c32ace40a4
Fix builds.
2022-01-22 17:27:18 +08:00
Stephen Chung
f92894e337
Rename GlobalRuntimeStatemodules -> imports.
2022-01-20 08:17:34 +08:00
Stephen Chung
3d4abeed0e
New metadata functions.
2022-01-20 08:16:38 +08:00
Stephen Chung
0b3250a262
Add strict command to rhai-repl.
2022-01-19 14:02:55 +08:00
Stephen Chung
f0781c9736
Properly handle \r\n pairs in doc-comments.
2022-01-17 23:15:51 +08:00
Stephen Chung
d58df1fb34
Engine::gen_fn_signatures enumerates non-standard external packages.
2022-01-17 23:15:22 +08:00
Stephen Chung
86fc2f7bf1
Refine types display.
2022-01-17 21:51:04 +08:00
Stephen Chung
58e1094b79
Register test
functions in repl.
2022-01-17 21:50:36 +08:00
Stephen Chung
16c03cc864
Add comments to standard library functions.
2022-01-17 21:49:06 +08:00
Stephen Chung
5232bbbff8
Add get/set methods to arrays, blobs, maps and strings.
2022-01-17 10:21:03 +08:00
Stephen Chung
573bfe46dd
Fix formatting.
2022-01-17 07:50:29 +08:00
Stephen Chung
57cfd6a354
Fix builds.
2022-01-16 23:15:37 +08:00
Stephen Chung
24b68971a8
Fix offset calc.
2022-01-16 22:54:28 +08:00
Stephen Chung
5935a88958
Revert "Refine examples."
...
This reverts commit 146129279c
.
2022-01-16 22:50:39 +08:00
Stephen Chung
146129279c
Refine examples.
2022-01-16 22:45:49 +08:00
Stephen Chung
3667761340
Fix bugs and add comments to standard library.
2022-01-15 23:34:38 +08:00
Stephen Chung
e24848668a
Fix build.
2022-01-15 11:35:44 +08:00
Stephen Chung
00b189d0c6
Replace Cow<str> in Scope with SmartString.
2022-01-15 11:26:43 +08:00
Stephen Chung
2a8a8c00f5
Refine calc_index API.
2022-01-15 10:24:08 +08:00
Stephen Chung
a8ec984b0f
Fix unsafe violation in for loop.
2022-01-15 10:18:16 +08:00
Stephen Chung
ae77582028
Minor refactor.
2022-01-14 21:49:38 +08:00
Stephen Chung
e2e0b8d083
Fix Array::chop.
2022-01-14 10:04:24 +08:00
Stephen Chung
96764c0d2d
Fix UINT -> UNSIGNED_INT.
2022-01-13 22:51:56 +08:00
Stephen Chung
25f54c0ea5
Pretty-display return types.
2022-01-13 22:51:10 +08:00
Stephen Chung
5ab7c59ba0
Fix Array::pad infinite loop.
2022-01-13 22:05:07 +08:00
Stephen Chung
5e32af0ceb
Fix unchecked build.
2022-01-13 21:08:36 +08:00
Stephen Chung
510c201d2f
Fix build.
2022-01-13 21:01:56 +08:00
Stephen Chung
09aa9fc3db
Extract metadata into separate type.
2022-01-13 19:07:56 +08:00
Stephen Chung
a3a527923a
Fix metadata param name in JSON.
2022-01-13 18:13:38 +08:00
Stephen Chung
0f4e8848f9
Extract index calculataion into functions.
2022-01-13 18:13:27 +08:00
Stephen Chung
4b4a6c944d
Fix test.
2022-01-12 11:01:03 +08:00
Stephen Chung
37dbc68bf5
Use target_family for wasm.
2022-01-12 08:12:28 +08:00
Stephen Chung
77eb96bd7e
Fix errors.
2022-01-11 11:40:08 +08:00
Stephen Chung
6dedb1ed9f
Fix no_std builds.
2022-01-11 11:33:54 +08:00
Stephen Chung
f205091d0a
Inline traits impl.
2022-01-10 22:51:24 +08:00
Stephen Chung
56217e386e
Fix debug for Engine.
2022-01-10 22:51:04 +08:00
Stephen Chung
5d90b3274c
Catch unsupported custom syntax.
2022-01-10 20:08:03 +08:00
Stephen Chung
ea6c264f5f
Fix builds.
2022-01-10 13:43:30 +08:00
Stephen Chung
1e0d46fc13
Fix debug print for GlobalRuntimeStates.
2022-01-09 18:43:12 +08:00
Stephen Chung
e4e2bb3356
Fix builds.
2022-01-09 12:44:24 +08:00
Stephen Chung
d1749131c5
Add missing data size check.
2022-01-08 23:23:43 +08:00
Stephen Chung
f399e8a905
Evaluate function call args more efficiently.
2022-01-08 18:40:19 +08:00
Stephen Chung
afb651d0aa
Support converting literal FnPtr.
2022-01-08 14:00:41 +08:00
Stephen Chung
047e65223d
Fix builds.
2022-01-07 12:19:01 +08:00
Stephen Chung
a267ac5e54
Split Engine into eval folder.
2022-01-07 11:43:47 +08:00
Stephen Chung
33bfff3722
Fix build.
2022-01-06 23:29:11 +08:00
Stephen Chung
c75d51ae88
Reduce unnecessary data size checking.
2022-01-06 22:10:16 +08:00
Stephen Chung
de6cb36503
Lift function calls out of match block in eval_stmt.
2022-01-06 16:06:31 +08:00
Stephen Chung
80edb1200d
Fix Array::pad limits.
2022-01-06 15:30:17 +08:00
Stephen Chung
0a63e1732b
Optimize hot path in Engine::eval_expr.
2022-01-06 15:28:53 +08:00
Stephen Chung
2e050f8f88
Reduce data size checking.
2022-01-06 13:40:03 +08:00
Stephen Chung
ed89817d0c
Reverse tail call optimization.
2022-01-06 12:31:46 +08:00
Stephen Chung
bc6bf6c6ba
Change expect("exists") to unwrap().
2022-01-06 11:07:52 +08:00
Stephen Chung
b1b4361d08
Fix documentation.
2022-01-06 10:19:25 +08:00
magnus
7bf517b242
Fix documentation
2022-01-06 10:18:02 +08:00
Stephen Chung
123e8b1b48
Improve FnPtr debug display.
2022-01-05 13:48:25 +08:00
Stephen Chung
2b613fdff3
Remove unneeded strings interner for modules.
2022-01-05 13:40:49 +08:00
Stephen Chung
a0531129df
Restructure expression dispatch.
2022-01-05 13:14:18 +08:00
Stephen Chung
f35c9c1ac4
Refactor imports.
2022-01-05 12:52:56 +08:00
Stephen Chung
328f6910b6
Refactor wasm feature gates.
2022-01-04 22:16:20 +08:00
Stephen Chung
d99953c101
Fixup AsRef<str> vs &str.
2022-01-04 15:22:48 +08:00
Stephen Chung
1d1e473ac4
Minor refactor.
2022-01-03 23:16:47 +08:00
Stephen Chung
d60f14ec27
Streamline hot code.
2022-01-03 23:11:06 +08:00
Stephen Chung
8961f36e8e
Move bit-fields into new package.
2022-01-03 23:10:20 +08:00
Stephen Chung
bccdf70521
Change tuples into fields.
2022-01-02 23:26:38 +08:00
Stephen Chung
29f1328087
Simplify Dynamic::from for better inlining.
2022-01-02 20:47:03 +08:00
Stephen Chung
809feaf58d
Add doc comments.
2022-01-02 15:14:55 +08:00
Stephen Chung
d60ed5a502
Reduce size of Variant trait.
2022-01-01 19:54:46 +08:00
Stephen Chung
a6ddb64596
Fix builds.
2022-01-01 17:38:32 +08:00
Stephen Chung
135b1f54c2
Remove Option from source and use empty string as no source.
2022-01-01 17:20:00 +08:00
Stephen Chung
8329baea29
Fix doc comments.
2021-12-31 23:01:34 +08:00
Stephen Chung
f3a8364936
Split blob write into write_utf8 and write_ascii.
2021-12-31 17:49:38 +08:00
Stephen Chung
ce93f56813
Rename parameters.
2021-12-31 17:49:19 +08:00
Stephen Chung
e3aa2c19ce
Make for loops for efficient.
2021-12-31 15:59:13 +08:00
Stephen Chung
64bf2eef5c
Better error messages.
2021-12-30 12:19:41 +08:00
Stephen Chung
1fd242ed2c
Flatten nested block scopes.
2021-12-30 12:14:54 +08:00
Stephen Chung
be4ae6e763
Add rewind_scope to eval_stmt.
2021-12-30 08:57:23 +08:00
Stephen Chung
3488dbe74b
Fix merging strings interner.
2021-12-29 14:26:54 +08:00
Stephen Chung
4bd482352e
Fix eval call.
2021-12-28 23:00:31 +08:00
Stephen Chung
cbaf095c7a
Merge restore_state and rewind_scope.
2021-12-28 17:50:49 +08:00
Stephen Chung
5b667a69b7
Reverse EvalStateData.
2021-12-28 12:19:20 +08:00
Stephen Chung
280010c427
Fix builds.
2021-12-28 12:00:01 +08:00
Stephen Chung
807240e249
Rename Imports to GlobalRuntimeState.
2021-12-28 11:42:52 +08:00
Stephen Chung
9deddc679c
Use Box<str>.
2021-12-27 23:15:25 +08:00
Stephen Chung
a78488d935
Rename Imports to GlobalRuntimeState.
2021-12-27 23:03:30 +08:00
Stephen Chung
e8b070cbf8
Fix builds.
2021-12-27 22:28:11 +08:00
Stephen Chung
9c7ced2b80
Move custom syntax to api.
2021-12-27 22:02:34 +08:00
Stephen Chung
4d226542fa
Split out strings interner.
2021-12-27 21:56:50 +08:00
Stephen Chung
7a15071e4e
Reduce size of ChainArgument.
2021-12-27 17:00:21 +08:00
Stephen Chung
757eacfdde
No need for types with Into::into.
2021-12-27 16:59:05 +08:00
Stephen Chung
f443e4d9f6
Fix formatting.
2021-12-27 13:30:44 +08:00
Stephen Chung
dfb3378b28
Expand function call arguments inline storage.
2021-12-27 12:27:44 +08:00
Stephen Chung
05d4c81e7a
Use type alias for error.
2021-12-27 12:27:31 +08:00
Stephen Chung
e7ca3f41dd
Fix formatting.
2021-12-27 11:43:11 +08:00
Stephen Chung
a07faf7dd9
Fix doc test.
2021-12-26 12:16:48 +08:00
Stephen Chung
01c35808cb
Use type alias
2021-12-25 23:49:14 +08:00
Stephen Chung
43363e0660
Reserve is keyword.
2021-12-24 14:59:14 +08:00
Stephen Chung
5c31ec7f78
Fix array bug.
2021-12-22 22:22:20 +08:00
Stephen Chung
3751b6d018
Build in array/blob concat functions.
2021-12-22 19:59:48 +08:00
Stephen Chung
422db4269e
Allow multiple packages in def_package.
2021-12-22 12:41:55 +08:00
Stephen Chung
1c50efbac8
Unroll switch range case if range has only one number.
2021-12-22 10:48:19 +08:00
Stephen Chung
7ff50451cc
Make comments multiline.
2021-12-21 22:16:03 +08:00
Stephen Chung
f9f3615878
Fix builds.
2021-12-21 16:36:53 +08:00
Stephen Chung
b85a9b3c1c
Extract doc-comment on plugin functions.
2021-12-21 16:14:07 +08:00
Stephen Chung
f74486f904
Separate return type name and use references for serialization.
2021-12-21 13:21:29 +08:00
Stephen Chung
d7960dfe80
Short circuit no_function.
2021-12-21 13:03:39 +08:00
Stephen Chung
b4756b4575
Move CallableFunction to own file.
2021-12-20 22:13:00 +08:00
Stephen Chung
bca9fe53b0
New syntax for def_package.
2021-12-20 11:42:39 +08:00
Stephen Chung
5729f0cdd4
Add test for call_fn_raw.
2021-12-19 23:22:14 +08:00
Stephen Chung
123012404b
Add Blob::write for strings.
2021-12-18 23:03:35 +08:00
Stephen Chung
e507dcfcb4
Fix no_index build.
2021-12-18 18:44:08 +08:00
Stephen Chung
541ef319bb
Merge branch 'v1.3-fixes'
2021-12-18 18:22:20 +08:00
Stephen Chung
7eda6454a8
Bug fix.
2021-12-18 17:47:35 +08:00
Stephen Chung
9736171089
Fix bug in hex parsing for negative numbers.
2021-12-18 17:07:30 +08:00
Stephen Chung
0ae4d14a62
Move BLOB concat and push to builtin.
2021-12-18 15:37:20 +08:00
Stephen Chung
82d3375fc0
Fix Dynamic::from for BLOB.
2021-12-18 15:36:30 +08:00
Stephen Chung
9cf8360616
Move blob functions to builtin.
2021-12-18 14:58:02 +08:00
Stephen Chung
2b79a65454
Move range contains into builtin.
2021-12-18 14:50:37 +08:00
Stephen Chung
fc84600b22
Add NativeCallContext::call_fn
2021-12-18 12:29:04 +08:00
Stephen Chung
1c1247ac9a
Tidy up code.
2021-12-18 12:28:56 +08:00
Stephen Chung
dc6896fbe2
Add OpAssignment::new_from_token.
2021-12-17 16:55:24 +08:00
Stephen Chung
8d67c70294
Fix builds.
2021-12-17 16:55:07 +08:00
Stephen Chung
29a9b3878d
Fix builds.
2021-12-17 16:32:34 +08:00
Stephen Chung
42638db0fb
Move Engine default limits.
2021-12-17 16:15:30 +08:00
Stephen Chung
c7ec27acc7
Split AST into separate files.
2021-12-17 16:07:13 +08:00
Stephen Chung
b1b2c62d7d
Merge branch 'v1.3-fixes'
2021-12-16 22:40:25 +08:00
Stephen Chung
10fa6844c4
Fix custom syntax with method calls.
2021-12-16 22:40:10 +08:00
Stephen Chung
fbc2b1f13d
Allow non-custom reserved symbols in custom syntax.
2021-12-16 18:01:49 +08:00
Stephen Chung
f92cbe1f6d
Merge branch 'v1.3-fixes'
2021-12-16 16:10:39 +08:00
Stephen Chung
224aa0ea68
Allow custom syntax inside binary operator expressions.
2021-12-16 16:06:44 +08:00
Stephen Chung
2adb4ba4a8
Simplify deref_mut to &mut *.
2021-12-15 23:21:05 +08:00