Commit graph

961 commits

Author SHA1 Message Date
qwreey
12bf3bd9ef
Add gitignore for core dump file, Callable optimization (#243) 2024-10-21 19:32:38 +00:00
qwreey
72fac28dab
Add Moonwave annotation partially (#243) 2024-10-21 19:32:38 +00:00
qwreey
5002088240
Fix closure error (#243) 2024-10-21 19:32:38 +00:00
qwreey
658b5ef75c
Move fixed size types into ffi, Fix test cases (#243) 2024-10-21 19:30:14 +00:00
qwreey
b31f81459f
Move c ABI related object and functions into ffi.c (#243) 2024-10-21 10:53:14 +00:00
qwreey
a67661a753
Void type support in call (#243) 2024-10-19 07:31:45 +00:00
qwreey
27e250daa5
Implememt CVoid, StringifyData and CopyData (#243) 2024-10-18 06:12:53 +00:00
qwreey
7ee757ac9c
Provide ptr conversion and test case (#243) 2024-10-17 18:18:44 +00:00
qwreey
e19d9748e5
Implement ClosureData (#243) 2024-10-17 16:24:13 +00:00
qwreey
da30dfb3f0
Refactor and documenting code structure (#243) 2024-10-17 10:16:43 +00:00
Qwreey
a2a8176241
Merge pull request #1 from 0x5eal/chore/ffi-types
Update Luau types
2024-10-17 15:30:21 +09:00
Qwreey
bf33afdf9c
Merge branch 'lune-org:main' into ffi 2024-10-17 10:38:10 +09:00
qwreey
58add58244
Renaming methods (#243) 2024-10-17 01:37:24 +00:00
qwreey
ba074d9a28
Reducing and organizing duplicated codes (#243) 2024-10-16 23:37:56 +00:00
Filip Tibell
138221b93e
Update websocket tests and types to use new calling convention 2024-10-16 22:00:33 +02:00
Filip Tibell
8abfc21181
Use standard method calling conventions for websockets 2024-10-16 21:55:53 +02:00
309c461e11
Implement a non-blocking child process interface (#211) 2024-10-16 21:48:12 +02:00
Filip Tibell
93fa14d832
Revert some unnecessary stylistic changes 2024-10-16 21:41:16 +02:00
df4fb9be91
Make Runtime::run Return Lua Values (#178) 2024-10-16 21:35:23 +02:00
eaac9ff53a
Migrate to Rokit as toolchain manager (#238) 2024-10-16 21:06:14 +02:00
Eli
0d2f5539b6
Add Moonwave comments for DateTime properties. (#248) 2024-10-16 21:03:58 +02:00
howmanysmall
0f4cac29aa
Fix Regex types (#250) 2024-10-16 21:03:00 +02:00
133abb5477
chore(types): add accidently removed leading pipe to CTypes 2024-10-16 19:09:35 +01:00
991ae5a9f1
chore(types): fix incorrect function signatures
* Fixes incorrect function signatures for callables.
* Now correctly returns the main module.
2024-10-16 19:08:29 +01:00
d27fba8147
chore(types): remove unnecessary generic usage 2024-10-16 12:56:57 +01:00
b03b485e29
chore(types): fix CType:cast to be properly typed 2024-10-16 12:53:16 +01:00
f27bed578f
chore(types): updated ffi types 2024-10-16 12:34:59 +01:00
qwreey
95258e1b51
Fix pretty-prints for type-define (#243) 2024-10-16 07:57:25 +00:00
qwreey
f094f2b74a
Remove static ctype reduce duplicated code (#243) 2024-10-16 06:35:09 +00:00
qwreey
7d4e4a24b2
Refactor type-define macro rules (#243) 2024-10-16 03:12:36 +00:00
qwreey
46dd185c6f
Implement call (#243) 2024-10-14 09:37:21 +00:00
qwreey
7ce5be248f
Add uninit ref and Implement Callable (#243) 2024-10-14 03:15:29 +00:00
qwreey
4d0fd9d80a
Implement callable and closure (#243) 2024-10-13 05:09:31 +00:00
qwreey
11bf0b6896
Remove unused codes and strange safety features (#243) 2024-10-13 05:09:31 +00:00
qwreey
c656a486c4
Add tests for ffi (#243) 2024-10-13 05:09:31 +00:00
qwreey
e23aaef8a7
Improve ffiref (#243) 2024-10-13 05:09:01 +00:00
qwreey
94d8d079c4
Add is_integer (#243) 2024-10-13 05:00:21 +00:00
qwreey
dd6a3861e5
Improve conversion performance by caching dyn handle on subtype (#243) 2024-10-13 04:54:46 +00:00
qwreey
b54ea519ba
Implement boundary check (#243) 2024-10-13 04:52:59 +00:00
qwreey
3ccb0720fd
Export ctypes and implement signedness (#243) 2024-10-13 04:30:43 +00:00
qwreey
48d2db4950
Implement luavalue conversion (#243) 2024-10-13 04:21:28 +00:00
qwreey
6d0db930f6
Implement ctype casting (#243) 2024-10-13 04:20:29 +00:00
qwreey
d60a1b99f6
Use CType<T> instead of CType (#243) 2024-10-13 04:19:18 +00:00
qwreey
26706d9355
Improve ctype export and Refactor (#243) 2024-10-13 04:16:49 +00:00
qwreey
6f131e9512
Implement chelper, ffiref, ffibox (#243) 2024-10-13 04:14:24 +00:00
qwreey
b36948cf1b
Implement carr, cstruct, ctype and cptr (#243) 2024-10-13 04:11:51 +00:00
qwreey
8c38aef32d
Implement struct and arr (#243)
struct.size: Returns a non-zero actual size
rewrite use super:: => use crate::
2024-10-13 04:09:22 +00:00
qwreey
af08c59e3b
Add lune-std-ffi crate (#243) 2024-10-13 04:07:59 +00:00
Filip Tibell
010cd36375
Version 0.8.9 2024-10-07 19:34:55 +02:00
Filip Tibell
c17da72815
Update dependencies 2024-10-07 19:33:59 +02:00