Commit Graph

184 Commits (trunk)

Author SHA1 Message Date
ondra05 ec49940b92 Moved Assignable creation functions 2021-10-21 20:51:24 +02:00
ondra05 38b647ff07 Removed `in_the_past_this_used_to_crash_but_not_anymore` test 2021-10-19 23:35:46 +02:00
T-Dark cf6a24b15a Fixed integer overflows. Why did I even write in the first place? 2021-10-19 17:29:53 +01:00
ondra05 83e3ea9283 Change Cart AssignableKind to Index. 2021-10-13 13:20:23 +02:00
Alex Bethel 88e65ff2a4 Sort of fix cart assignments 2021-10-12 14:33:23 -06:00
ondra05 9cfa5388ec improvement 2021-10-12 22:22:33 +02:00
ondra05 f0f0becec9 Added Assignable support in parser / AST 2021-10-12 22:14:20 +02:00
Alex Bethel 5c9c759be2 Add statement continuation in REPL in CLI
Typing ```
var foo = [
``` into the REPL now causes it to prompt you to complete the
statement rather than just printing an "unexpected EOF" error.
2021-10-09 22:31:14 -06:00
ondra05 8986d225a4 Generalised some lexer functions 2021-10-04 23:03:23 +02:00
ondra05 d77a7a45fc Renamed `Iden` to `Ident` 2021-10-04 23:00:18 +02:00
Alex Bethel fa16442560 Improve consistency of code & comments
Changed all `&str.to_string()` into `&str.to_owned()`, and made the
grammar of the `Value::into_*` comments uniform.
2021-09-04 10:54:53 -06:00
ondra05 c6fac09660 Variable name shortened 2021-09-02 18:36:25 +02:00
ondra05 4c5c44d177 Fixed division
x/0 is now x/42 instead of 42 which makes it more confusing
2021-09-02 18:35:33 +02:00
ondra05 71e56e9ad4 Clippy 2021-09-01 17:46:17 +02:00
ondra05 35440661e2 All operations except functio ones are implemented
- Aboolean logic
- Cart division/multiplication
2021-08-31 00:41:37 +02:00
ondra05 567fe8c85e Implemented negation for most types 2021-08-30 23:19:25 +02:00
Alex Bethel 3342419242 Add parsing negative numbers 2021-08-30 15:03:29 -06:00
ondra05 bbabc8e195 Not is now lexing and parsing correctly 2021-08-30 22:55:31 +02:00
ondra05 6570292323 Removed And and Or ops because they aren't cursed enough 2021-08-30 22:18:09 +02:00
ondra05 19743f3c0b Most of operations are implemented 2021-08-30 22:14:13 +02:00
ondra05 bc0c4f1911 fmt + docs 2021-08-29 00:34:08 +02:00
ondra05 0f283c1da8 Used body length for AbleFunctio to i32 instead of AST length 2021-08-29 00:28:45 +02:00
ondra05 7ca05ccda6 Revert "Eval errors are now correctly spanned"
This reverts commit 75792224f6.
2021-08-29 00:26:40 +02:00
ondra05 75792224f6 Eval errors are now correctly spanned 2021-08-29 00:23:59 +02:00
ondra05 d509a986e6 Eval's integer representation is now its length
- consistency with other types
2021-08-29 00:07:26 +02:00
ondra05 b315a8414a Added placeholders for And + Or
and used placeholders for -, * and / in interpret
2021-08-28 23:59:04 +02:00
ondra05 5daa009361 Fixed add overflows 2021-08-28 23:55:36 +02:00
ondra05 4c29018809 Display carts sorted 2021-08-28 23:52:58 +02:00
ondra05 10327463ac Implement custom `PartialEq` for `Value` 2021-08-28 23:43:59 +02:00
ondra05 1a5b29e833 Most coercions implemented 2021-08-28 23:27:35 +02:00
ondra05 6000de6100 Require space after `owo` for making comments. 2021-08-23 18:58:28 +02:00
Alex Bethel 15cacdbaef Fix panics on invalid indexes 2021-08-16 15:06:40 -06:00
ondra05 dda3213e3b Relicensed to MIT 2021-08-11 20:32:12 +02:00
ondra05 528b916a69
Restructured project (#37)
* Separation to two crates
- `ablescript`: library, language
- `ablescript_cli` - cli: repl and executor for files

* Added lints (back) to library
- unsafe_code and unwrap_used are forbidden
2021-08-10 21:32:12 +02:00