Johannes Asal

Results 13 issues of Johannes Asal

I have a Rust function registered to Rune which returns a `u8`. I want to compare that value against `0` in a Rune script, but it fails with a type...

question

### Observed behavior ```rust fn foo() { let var = 1; var = 2; // OK let var = 3; // OK fn bar(param) { param = 1; // OK...

enhancement

Vec indexing is inconsistent. For example, indexing a single item in a vector works fine: ``` let v = [0, 1, 2]; let item = v[1]; ``` Obtaining slices into...

enhancement

I have a main script file which references different modules. These should be loaded from a global modules directory. I got this working by using a custom SourceLoader. The individual...

question

### Environment details * Conan version: 1.62.0 ### Steps to reproduce Create a minimal test project with `layout()` method and cmake_layout and run the following sequence of commands: ``` conan...

### Environment details * Conan version: 1.62.0 ### Steps to reproduce According to the Conan Migration Guide the SCM attribute should be replaced with export/source methods as follows: ```python def...

stage: triaging

Please add style settings for code sections so that I can give them a background color for better differentiation from normal text. I'm using a custom CSS snippet right now...

The theme should be selectable on a per-diagram basis, e.g. by adding a preamble to the d2 code block which contains the settings and is then removed by the plugin...

### Describe the bug When running `conan create` against a previously created lockfile, the test package step sometimes fails with the error message ``` ERROR: Something failed while testing 'X'...

I have a lot of code that I want to make available as Koto functions/objects which uses the builder pattern in some way. Usually this means that there are methods...