|
7b91e879b7
|
Continue Value/VM overhaul
|
2024-11-15 21:42:27 -05:00 |
|
|
69458a138d
|
Clean up
|
2024-11-15 19:19:31 -05:00 |
|
|
302bc9ce6c
|
Continue Value/VM overhaul
|
2024-11-15 19:18:00 -05:00 |
|
|
73247446c7
|
Major overhaul to VM
|
2024-11-10 19:28:21 -05:00 |
|
|
8af8e48ebd
|
Begin large refactor to enhance type handling
|
2024-11-09 21:40:33 -05:00 |
|
|
d82aed1a93
|
Begin refactoring to avoid mutating locals in the chunk
|
2024-11-09 13:49:02 -05:00 |
|
|
bb345a7938
|
Fix argument retrieval in native functions
|
2024-11-07 03:05:32 -05:00 |
|
|
04a1c81a2a
|
Add parents to the VM; Improve the disassembler
|
2024-11-07 02:10:02 -05:00 |
|
|
e99a7b5e1e
|
Rename Parser to Compiler
|
2024-11-06 15:40:37 -05:00 |
|
|
74bb8a429a
|
Clean up
|
2024-11-06 15:14:12 -05:00 |
|
|
d587d87ed7
|
Refine chunk poisoning and optimize taking values from registers
|
2024-11-06 15:08:51 -05:00 |
|
|
78840cf3e7
|
Bring back chunk errors
|
2024-11-06 13:50:49 -05:00 |
|
|
f08c7c6f1f
|
Refine values to be either abstract or concrete
|
2024-11-06 03:36:46 -05:00 |
|
|
a16f7795de
|
Continue addind type evaluation
|
2024-11-06 00:57:54 -05:00 |
|
|
314913dbf5
|
Begin adding type evaluation to the parser
|
2024-11-05 23:20:58 -05:00 |
|
|
3330939128
|
Add docs
|
2024-11-05 19:38:26 -05:00 |
|
|
a2e7a4e73e
|
Begin removing chunk errors; Use constants for identifiers
|
2024-11-04 15:38:58 -05:00 |
|
|
ae6d3d7a82
|
Add new implicit return for end of file
|
2024-11-01 09:55:15 -04:00 |
|
|
7e4f6654a4
|
Add move instruction to fix assignment to conditionals
|
2024-11-01 02:51:18 -04:00 |
|
|
febd7bb054
|
Fix while loop jumps; Pass tests
|
2024-10-31 20:33:46 -04:00 |
|
|
604962c535
|
Begin refactoring jump instructions
|
2024-10-30 14:48:30 -04:00 |
|
|
bd23853657
|
Add native function errors
|
2024-10-30 09:32:46 -04:00 |
|
|
4d6412006a
|
Add lots of new native functions
|
2024-10-30 08:02:22 -04:00 |
|
|
d7be203bfc
|
Fix write and write_line
|
2024-10-30 05:31:46 -04:00 |
|
|
c264aaeb13
|
Add the to_string, write and write_line natives
|
2024-10-30 05:16:34 -04:00 |
|
|
af4e43fc9f
|
Add native calls and the panic native
|
2024-10-30 03:08:25 -04:00 |
|
|
e304195661
|
Change return to use last_assigned_value; Add scopes tests
|
2024-10-29 23:11:55 -04:00 |
|
|
c0f74f1e09
|
Tweak control flow jumping and compile-time optimizations
|
2024-10-20 22:18:58 -04:00 |
|
|
1da61f0873
|
Begin reworking jump instructions
|
2024-10-20 10:20:09 -04:00 |
|
|
8db37bcdfd
|
Add LoadSelf instruction to enable recursion
|
2024-10-20 02:30:22 -04:00 |
|
|
f15cf84c4d
|
Refactor to fix bugs with loops; Add close instructions while calling functions
|
2024-10-20 00:06:22 -04:00 |
|
|
9d5c9d9fd0
|
Implement functions calls
|
2024-10-19 17:24:22 -04:00 |
|
|
8c79157fa7
|
Simplify and clean up
|
2024-10-19 03:06:14 -04:00 |
|
|
bfade78a0d
|
Consume VM and chunk when running the VM
|
2024-10-18 23:34:48 -04:00 |
|
|
44659ec34a
|
Extend CLI to cover more formatting options; Extend formatting
|
2024-10-13 16:46:45 -04:00 |
|
|
c7bba88875
|
Create formatter
|
2024-10-13 07:14:12 -04:00 |
|
|
5eb901f468
|
Add a VM method; Refactor and clean up
|
2024-10-13 04:21:07 -04:00 |
|
|
055f0a4100
|
Continue working on function calls
|
2024-10-13 02:47:12 -04:00 |
|
|
d5fc68e466
|
Refactor chunk disassembly output
|
2024-10-13 02:33:58 -04:00 |
|
|
743679371d
|
Fix function bug
|
2024-10-12 20:34:13 -04:00 |
|
|
2864bee057
|
Add types to functions and improve calls
|
2024-10-12 20:19:21 -04:00 |
|
|
ea0be43199
|
Begin adding function calls
|
2024-10-12 10:55:34 -04:00 |
|
|
30b2801a38
|
Add item type to list value; Clean up
|
2024-10-12 06:17:16 -04:00 |
|
|
9c612317dc
|
Refactor values to use register pointers for complex values
|
2024-10-12 04:50:30 -04:00 |
|
|
6e1ef77192
|
Refactor to use index references to avoid cloning values
|
2024-10-12 03:06:44 -04:00 |
|
|
259721f6cb
|
Continue implemnting functions; Begin adding types
|
2024-10-09 06:15:06 -04:00 |
|
|
dddbf77fac
|
Fix bug in the VM
|
2024-10-05 21:30:48 -04:00 |
|
|
d857f42434
|
Pass all tests
|
2024-10-05 02:07:26 -04:00 |
|
|
9d0aa13e8a
|
Refactor VM, chunk and parser to pass tests
|
2024-10-05 00:11:03 -04:00 |
|
|
5015cf4cc4
|
Refactor how return instruction works; Begin passing tests
|
2024-10-04 22:33:47 -04:00 |
|