ffrostfall

Results 17 issues of ffrostfall

Occasionally when using Rojo, it will output invalid JSON such as the following: https://i.imgur.com/zLURlf5.png ![image](https://github.com/rojo-rbx/rojo/assets/80861876/72e81d21-82f4-4674-9bfa-f0504018e26d) ![image](https://github.com/rojo-rbx/rojo/assets/80861876/1fcda75e-df73-48e5-b000-8ab2334e0631) --- This seems to only happen in watch mode. Regenerating the sourcemap manually always...

type: bug
scope: cli
impact: medium

As of right now, `Computed` processor functions are not labelled in the microprofiler. Currently I believe computers use xpcall to run processors- I think this could be easily and quickly...

enhancement
ready to work on

```lua local literal: "a" | "b" local separateCond = ... if separateCond or (literal == "a") then if literal == "b" then -- Type error, "a" cannot be compared with...

bug
fixed by new solver

I am developing a networking library, and I want to have the same user-facing API regardless of run context for connections. I would like to be able to use intersection...

enhancement

Currently, there is no way to process the stdout stream of any process spawned with `process.spawn`. My current use case is being able to spawn multiple processes and label each...

enhancement

```lua local signal = {} signal.__index = signal type InternalIdentity = setmetatable () }, typeof(signal)> local function constructor(): InternalIdentity return setmetatable({}, signal) end function signal.fire(self: InternalIdentity, ...: T...): () end...

bug
new solver

A common programming pattern is to split up logic into one-time use functions, in order to reduce indentation and increase readability. Take the following code: ```lua local ids: { [number]:...

enhancement

Take the following code: ```lua local function func() -- long operation here (above the threshold for inlining) end func() func() func() func() ``` Inlining `func()` for each call here does...

enhancement

As wally package types doesn't use default.project.json, I don't think this is an actually breaking error.