goto40

Results 94 comments of goto40

I have a probably similar problem: When creating the hello-world-language (langium 0.5.0) and changing the grammar from `'person' name=ID` to `'ID' name=ID` I get a problem: ``` Person: 'ID' name=ID;...

At the moment I do not feel that I have enough information to make a PR. With some help, I am willing to try my best: in `xview.hpp` https://github.com/xtensor-stack/xtensor/blob/f3c11b2d810159e7063daddeaa0764f4006e5a73/include/xtensor/xview.hpp#L1572 I...

Maybe this check can be done at compile time? Is there a compile time information about the number of dimensions?

At different locations in the tests, it seems crucial to allow to provide more that the required indices (e.g. 4 indices for a 2D array). In that case the supplementary...

I prepared a simple regression test (which can be put into `test_xview.cpp`: ``` TEST(xview, regression_2395_access_compiler_problem) { // just checking it compiles... xt::xarray a4d = xt::zeros({10, 10, 10, 10}); auto a4...

I found a possible hint: Addding some C++17 compile-time if to prevent instantiating the template-`access(args...)`-method, I was able to compile the test above (diff: https://github.com/goto40/xtensor/commit/d326fde8586eae37ac5518dfb88649879157d3ae): ``` template template inline auto...

#2398 works perfectly for me. I just tried my example application and the bug is fixed - the software works... :-) @tdegeus, if you find time, maybe you could have...

Same for me... (bevy 0.13.1 and 0.13.2)

Thank you, @msujew ! This helped... Adding the property - like you suggested - solved the issue. ``` { "projectName": "HelloWorld", "languages": [{ "id": "hello-world", "grammar": "src/language-server/hello-world.langium", "fileExtensions": [".hello"], "chevrotainParserConfig":...

If we have a metamodel referencing another metamodel only, w/o having access to its grammar (because the other metamodel comes from a lib), then we will not be able to...