ValKmjolnir
dea19fe3c3
🔥 move NASAL_EXPORT to nasal.h
2024-12-11 20:52:58 +08:00
ValKmjolnir
cc04720f12
🔥 change file structure & add pack.py
2024-03-03 23:12:16 +08:00
ValKmjolnir
f747d91efe
⚡ optimize code
2023-12-05 23:54:26 +08:00
ValKmjolnir
2c03d59b6f
🐛 fix error loading bug in MSVC version
2023-12-02 21:48:20 +08:00
ValKmjolnir
01ceaf7e66
⚡ replace vm_type comparison with .is_xxx
2023-11-23 00:20:52 +08:00
ValKmjolnir
be84388f5b
⚡ change enum vm_type to enum class
2023-11-22 22:23:15 +08:00
ValKmjolnir
433743f790
⚡ add tool for getting property tree from fgfs
...
by using --httpd in fgfs
2023-11-06 22:18:48 +08:00
ValKmjolnir
2ea9e03522
🐛 fix bug in recvfrom
2023-11-06 00:22:11 +08:00
ValKmjolnir
8a160dc7f2
✨ use reinterpret_cast as pointer cast
2023-11-05 00:10:26 +08:00
ValKmjolnir
c946e9debd
📝 update documents
2023-11-04 00:09:59 +08:00
ValKmjolnir
aab7decd70
⚡ split type definition from gc.h
2023-10-15 21:46:53 +08:00
ValKmjolnir
85bc699905
✨ add command history in repl
2023-09-19 00:24:45 +08:00
ValKmjolnir
c157d8a9b1
🎨 add namespace
2023-09-08 18:17:07 +08:00
ValKmjolnir
ec03f0aee0
⚡ repl does not write temp file now
2023-09-06 00:12:01 +08:00
ValKmjolnir
52e6adfe28
🔥 delete ghost type table
2023-08-08 20:50:47 +08:00
ValKmjolnir
27bc544bbe
📝 rename files
2023-07-02 22:02:31 +08:00
ValKmjolnir
ac2744e24f
✨ change build scripts
2023-07-02 19:48:36 +08:00
ValKmjolnir
dfb0c6ab52
🐛 fix header in module for vs to build
2023-05-11 19:41:39 +08:00
ValKmjolnir
7cc9ef436e
✨ improve function of ghost_register_table
2023-05-11 00:24:35 +08:00
ValKmjolnir
774ad60c42
✨ add global_ghost_type_table for test
2023-05-10 00:48:04 +08:00
ValKmjolnir
92abad3384
✨ add cmakelists.txt
2023-05-06 21:12:40 +08:00
ValKmjolnir
73450092f2
✨ add test/jsonrpc.nas and fix bug
...
bug: in nasocket.cpp, recv and recvfrom do not place 0 after reciving
data into the buffer.
2023-03-23 00:09:51 +08:00
ValKmjolnir
268a03864e
✨ use new way of constructing var objects
2023-01-05 22:42:17 +08:00
ValKmjolnir
4c5ffb0240
🎨 change code format
2022-11-26 22:49:22 +08:00
ValKmjolnir
309a57070c
🚀 change module loading
2022-11-15 21:23:34 +08:00
ValKmjolnir
c705b75513
🚀 change module function parameter format to avoid warnings
2022-10-24 01:12:25 +08:00
ValKmjolnir
3fd1b25f79
🔥 change class name.
...
nasal_lexer -> lexer
nasal_parse -> parse
nasal_codegen -> codegen
nasal_vm -> vm
nasal_gc -> gc
nasal_dbg -> debugger
nasal_import -> linker
nas_ref -> var
2022-10-21 01:29:29 +08:00
ValKmjolnir
a13e419518
📝 fix MSVC warning in nasal_builtin.h & improve error output.
2022-09-04 23:08:06 +08:00
ValKmjolnir
a91826607c
⚡ optimize header file, now modules could generate smaller dynamic libs.
2022-08-24 22:08:47 +08:00
ValKmjolnir
feea8f8d66
🐛 fix `builtin_err` in module to `nas_err`
2022-08-04 21:20:27 +08:00
ValKmjolnir
99a131c552
🚀 change `std::string` to `string`, change identifiers' name, `-o` is now a function available in debug mode.
2022-07-23 17:00:25 +08:00
ValKmjolnir
577ecd14df
🚀 update makefile to choose different compilers by users & fix some codes for MSVC to compile.
2022-07-16 16:53:11 +08:00
ValKmjolnir
fb25a4973c
⚡ optimize codes. details:
...
1. delete gc::builtin_alloc
2. add convenient way of getting new string object: gc::newstr, and shrink the size of codes
3. update doc
4. add gc::temp to be used in native/module functions to avoid being recognized as garbage incorrectly when triggered mark-sweep
2022-07-07 17:51:30 +08:00
ValKmjolnir
21b345af27
📝 update test/httptest.nas
2022-06-11 12:49:26 +08:00
ValKmjolnir
12d7dde42d
🚀 finish socket library:
...
socket.socket()
socket.closesocket()
socket.shutdown()
socket.bind()
socket.listen()
socket.connect()
socket.accept()
socket.send() socket.sendto()
socket.recv() socket.recvfrom()
socket.errno()
2022-06-08 19:06:16 +08:00
ValKmjolnir
53b85cd459
🚀 add module/libsock.nas, preparing to add socket lib into this language.
2022-06-06 16:34:21 +08:00