Andrii Savytskyi

Results 49 comments of Andrii Savytskyi

Commit: `a6b6d036b19a548e3f2a199c6927ac7495c02ea1` Build type: `Debug` LuaJIT `2.1.1703358377` Compilation: `/usr/bin/clang -g -fno-sanitize-recover=all -fno-omit-frame-pointer -fno-optimize-sibling-calls -fsanitize=undefined -fsanitize=address -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wshadow -Wconversion -Wvla -Wdouble-promotion -Wmissing-noreturn -Wmissing-format-attribute -Wmissing-prototypes -fsigned-char -fstack-protector-strong...

@bfredl everything seems ok. I will reopen the issue if the crashes happen again

@bfredl I'm reopening this issue because some crashes occurred. ``` Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x000000032924cc20 Exception Codes: 0x0000000000000001, 0x000000032924cc20 Termination Reason: Namespace SIGNAL, Code 11 Segmentation...

@bfredl hello, I build from master and this error is not fixed

@justinmk As I said in the first message, sigfault does not always occur (often 130, 139, 141). At the moment, the case that consistently caused the problem (scrolling the main...

For test files you can do: ```lua local devicons = require "nvim-web-devicons" local function get_ext(name) if name:find "^.+%.test%..+$" or name:find "^.+Test%..+$" or name:find "^.+_test%..+$" then return "test" end if name:find...

> What is the behaviour when executing this test **back1**: 1) take token from `b`, set to `a` 2) take token from `c`, set to `b` Result: **tokens in `a`...

Possible safe solution (need validate): Change `Marking`: ``` public function mark(string $place): void { $this->places[$place] = ($this->places[$place] ?? 0) + 1; } public function unmark(string $place): void { $this->places[$place] =...

Like Petri Nets (https://github.com/symfony/symfony/issues/53179#issuecomment-1867383286), but only in `apply` when `tokenAsState=true` listeners must not be affected

Behaviour should change when we set `tokenAsState=false`. For example we can use `createWorkflowWithSameNameTransition` (https://github.com/symfony/symfony/blob/7.0/src/Symfony/Component/Workflow/Tests/WorkflowBuilderTrait.php#L90): ``` // +------------------------------------------------------------+ // | | // | | // | +----------------------------------------+ | // v |...