Mingun

Results 157 issues of Mingun

I investigating the problem that started from https://github.com/tafia/quick-xml/pull/562. When I tried to reproduce the error I found, that I cannot do that. After some time of digging and creating issues...

When testing mappings I have to repeatly click **Custom...** button and select 3 files in two different folders. It will be worth to remember my initial choice and apply them...

You can upload the generated js file and the source map for it but I don't see a way to upload the original file. That makes the whole site unusable.

For now the wrapping type is impossible to directly use in serde (de)serializers, because error types should implement `serde::de::Error` or `serde::ser::Error` and orphan rule forbids to make this implementation in...

For example, I want to test all formats from [kaitai-struct gallery](https://github.com/kaitai-io/kaitai_struct_formats). I use following code (folder `formats` is git checkout of https://github.com/kaitai-io/kaitai_struct_formats repository): ```rust #[cfg(test)] mod formats { use std::fs::File;...

The building cycle is extremely long. People complain about the Rust compiler, but they haven't seen Scala. First of all, `tests/build-compiler` builds documentation. For what it for me when I...

Currently some tests on https://ci.kaitai.io/ are failed because of that fact that instance fields are sorted alphabetically (due to [SortedMap](https://github.com/kaitai-io/kaitai_struct_compiler/blob/32227fc4130921962ed0418af287682427fbef5c/shared/src/main/scala/io/kaitai/struct/format/ClassSpec.scala#L41) used for storage) and [generated](https://github.com/kaitai-io/kaitai_struct_compiler/blob/32227fc4130921962ed0418af287682427fbef5c/shared/src/main/scala/io/kaitai/struct/ConstructClassCompiler.scala#L46-L53) in the same order. Sorting...

Currently C++ generator when uses smart pointers generates incorrect code that uses `unique_ptr` after it was moved into the vector: ```cpp void debug_array_user_t::_read() { m_one_cat = std::unique_ptr(new cat_t(m__io, this, m__root));...

Some manual tests uses [assertRaisesRegex](https://docs.python.org/3/library/unittest.html#unittest.TestCase.assertRaisesRegex) method, that's named `assertRaisesRegexp` in Python 2 (and that name is used). If we want to continue support Python 2, then we should use the...

infrastructure

After several refactorings the information in readme is slightly outdated. This PR brings it in line with reality