jiwonz

Results 18 issues of jiwonz

In Luau, the difference is smaller than in Lua 5.3 maybe due to fastcall, but there is still a function call overhead, so converting `math.sqrt(x)` to `(x)^.5` may be helpful...

Vide's source code is currently using `next, tbl` instead of generalized iteration. Internally, Luau seems to have almost the same function with generalized iteration and `next, tbl`, but generalized iteration...

This is an issue I thought about a long time ago, but I forgot about it, so I don't remember if it's a duplicate issue or if I already posted...

enhancement
extractor

**Bug Description:** When using function overloading in Luau, optional arguments do not work as expected. For example, with the following type: ```lua export type ReliabilityType = "reliable" | "unreliable" export...

bug

When the method name and field name of the metatable object(of class) type are the same, the type is displayed correctly but the hint is incorrect. The field is already...

bug

Currently, the Luau type system backend does not yet have real support for documentation comments on types or fields, and there is also no mechanism for retaining docs comments through...

enhancement
blocked/external

Simply added `byte[]` in `Property.Types`. This adds support for `byte[]` property type when serializing `PROP` chunk of `BinaryRobloxFile`. So now `BinaryStringValue.Value` can be serialized properly(maybe? but I have tested with...

```cs RobloxFiles.BinaryStringValue mapData = new() { Name = "test", Value = Encoding.UTF8.GetBytes("TEST"), Parent = bin, }; bin.Save("test.rbxm"); ``` If you check this saved rbxm with lune(rbx-dom), there is no value(empty...