m910q

Results 7 issues of m910q

**Some things i stumbled upon using path stuff on Windows.** `stdlib/src/path/path.vale` is missing the following import: ``` import stdlib.stringutils.*; ``` `path.iterdir()` fails on iterating if path is the root of...

When building the following code on Windows: ``` exported func main() { } ``` Produces this error: ``` Running: c:\cmd\vale\midas.exe --verify --output_dir build build\vast\mypackagename.vast build\vast\stdlib.vast build\vast\__vale.vast Region override: assist Warning:...

The following code crashes the IDE when compiling a `Debug` build. Fails correctly in `Release`. Tested in latest nightly. ```beef using System; namespace Clean; struct Content where TSize : const...

After the recent changes, `Enum.Parse` compilation fails when enum members contain keyword with `@` prefix. The code generation ends up outputting `.public`, which is seen as a keyword. I was...

Creating a `static append List` field with an initial capacity, overlays the memory for the static fields that follows. It works fine with instance fields. Tested in latest nightly. ```beef...

To replicate: 1. Have the code below. 2. Add a new "Wasm32" platform (It has to be this name, so I assume it has some specific configuration based on the...

Hi Consider the following, where you mark and copy all cases of `word` with multiple cursors. ```beef /* something word a word abc word */ ``` Go back to a...