d-enk
d-enk
protobuf.js version: 7.2.0 After [this](https://github.com/protobufjs/protobuf.js/commit/e7a34897a122342485468999a507626f1ea91507) change command `pbjs proto/a.proto proto/b.proto` returns error `Error: ENOENT: no such file or directory, open 'proto/proto/a.proto'` for this proto ```proto // ./proto/a.proto syntax = "proto3";...
```lua local fiber = require("fiber") local function test(name, fn) print(name) local f = fiber.new(function() local start = fiber.time() pcall(fn) print(fiber.time() - start) end) f:set_joinable(true) f:cancel() f:join() print("") end test("channel", function()...
### How are you using the lua-language-server? Visual Studio Code Extension (sumneko.lua) v3.11.0 ### Which OS are you using? Linux ### What is the issue affecting? Type Checking ### Reproduction...
before: ```lua build(): -- comment init():start() ``` after: ```lua build()(): -- commentinit():start() ``` `--verify` ``` error: could not format file ./stylua.lua: INTERNAL ERROR: Output AST generated a syntax error. Please...