Commit Graph

980 Commits

Author SHA1 Message Date
ValKmjolnir 37b0d7f12a bug fixed 2021-12-25 15:56:08 +08:00
ValKmjolnir ac80216ea8 update README.md 2021-12-23 21:46:53 +08:00
ValKmjolnir 1ae354c0cf lexer,parser,import,codegen use the same error module. 2021-12-23 21:15:50 +08:00
ValKmjolnir bde94f8ec6 update error info (except parser)
prepare for nasal_err module
2021-12-23 14:09:54 +08:00
ValKmjolnir 57cc368029 debug info now shows both source code and bytecode 2021-12-21 19:57:23 +08:00
ValKmjolnir ffb0f07eec add debugger function: break point & next step 2021-12-21 15:27:38 +08:00
ValKmjolnir 82181b7af4 add debugger framework
with function:backtrace,run,help,show global/local/upvalue,exit
2021-12-20 21:33:22 +08:00
Li Haokun 7f3b754a04 Merge pull request #7 from sidi762/master
Update c-cpp.yml to solve failures
2021-12-17 00:31:16 +08:00
ValKmjolnir 083293e3db little update 2021-12-16 23:53:13 +08:00
Sidi Liang 58f492471f Merge branch 'ValKmjolnir:master' into master 2021-12-13 08:49:45 +08:00
Sidi Liang 25f019c6b0 Update c-cpp.yml 2021-12-13 08:46:20 +08:00
ValKmjolnir e706214854 bug fixed & add os.platform 2021-12-08 18:46:32 +08:00
Li Haokun 1e22493fd7 Merge pull request #6 from sidi762/master
New Github Action for nightly builds on macOS
2021-12-07 10:37:39 +08:00
Sidi Liang 8c59c968cc Change the asset name to 'nasal' 2021-12-06 23:00:25 +08:00
Sidi Liang d1880bbf16 Attempt to make nightly builds for macOS 2021-12-06 22:55:18 +08:00
Sidi Liang c7c9c69a0f Update c-cpp.yml 2021-12-06 22:47:37 +08:00
Sidi Liang b2b0ff092a Try out GitHub Actions 2021-12-06 22:36:08 +08:00
ValKmjolnir ab6c194d71 add dylib.dlopen dylib.dlsym dylib.dlclose dylib.dlcall
now you could add your own modules into nasal without changing the source code!
2021-12-03 19:31:03 +08:00
ValKmjolnir cabce9370a delete ret stack/ add math.lg
now return address is stored on value stack
2021-12-02 22:23:22 +08:00
ValKmjolnir 7169f25774 delete op_cntpop & counter stack
now the iterator will be type vm_cnt and be stored on value stack.
2021-11-25 18:13:31 +08:00
ValKmjolnir 56c9cb60ab fixed bug of in_foreach and in_forindex 2021-11-22 14:24:28 +08:00
ValKmjolnir e1d5ab2da5 add unix.isdir and unix.isfile 2021-11-15 22:47:52 +08:00
ValKmjolnir b67cd85cb4 2 bugs fixed:
empty string will be true in conditional expressions,but now it is false(and string that is not empty and is not numerable will be true)

foreach(var i;func(){return []}()); will cause sigsegv because codegen generates error op_pop and op_cntpop,now the counter in_foreach and in_forindex change after generating
foreach/forindex expression before block generation.
2021-11-14 23:05:34 +08:00
ValKmjolnir bc9039dd37 change code structure 2021-11-02 22:44:42 +08:00
ValKmjolnir aeefaebcec add unix.opendir unix.readdir unix.closedir 2021-10-31 23:11:04 +08:00
ValKmjolnir 6b4116aece add unix.time unix.chdir unix.sleep unix.getcwd unix.getenv 2021-10-29 19:52:49 +08:00
ValKmjolnir d13e8084e5 add bits lib 2021-10-28 21:49:08 +08:00
ValKmjolnir b131a3ea9e add io lib & bug fixed 2021-10-27 23:05:25 +08:00
ValKmjolnir 95451490ca bug fixed 2021-10-26 22:34:02 +08:00
ValKmjolnir 101714986d optimize nasal_ast and fix bug in opr_slc2 2021-10-20 20:54:23 +08:00
ValKmjolnir cc9f3a8859 fix dynamic para error 2021-10-18 22:05:31 +08:00
ValKmjolnir 32465b92c8 fix sigsegv error 2021-10-18 21:50:25 +08:00
ValKmjolnir d18033d4cc add upvalue info into detail crash info 2021-10-18 19:59:41 +08:00
ValKmjolnir 515a2685fe add detail crash info 2021-10-17 22:57:45 +08:00
ValKmjolnir d7cffc76bd update 2021-10-16 23:36:43 +08:00
ValKmjolnir a7b1851967 optimize code structure 2021-10-16 21:08:57 +08:00
ValKmjolnir 602095f190 update variable name in nasal_lexer 2021-10-16 14:07:55 +08:00
ValKmjolnir a71b08a927 update 2021-10-15 22:21:57 +08:00
ValKmjolnir 645a652830 change function name and cli format 2021-10-14 23:22:28 +08:00
ValKmjolnir 321a762612 complete simple tutorial 2021-10-14 13:42:07 +08:00
ValKmjolnir 414c9c7487 change output format of information of bytecodes 2021-10-13 22:59:15 +08:00
ValKmjolnir 3ab5f00097 optimize source code 2021-10-12 18:26:10 +08:00
ValKmjolnir b77d9a48fb fully functional closure & add benchmark 2021-10-10 14:29:23 +08:00
ValKmjolnir 42a330cda7 vm_nil,vm_num changed to no-gcobject 2021-10-08 23:18:26 +08:00
ValKmjolnir b4f55f0d01 prepare for version 8.0 v7.0 2021-10-08 15:32:18 +08:00
ValKmjolnir e2ed6d9013 update 2021-09-25 23:25:31 +08:00
Li Haokun 52fbd729cc bad access bug fixed 2021-09-13 19:55:03 +08:00
Li Haokun 5ed1b63143 update 2021-09-10 19:13:42 +08:00
Li Haokun 87d5740125 add fg constants & change int(), num() 2021-09-02 19:10:49 +08:00
Li Haokun 8165624f3e add math.nan math.inf 2021-09-01 19:15:32 +08:00