Petr Pučil
Petr Pučil
@Mingun Well, thanks for the reports. The first example is apparently trying to use "absolute path" to the type, but I'm not pretty sure they're fully implemented right now. I've...
@Mingun: > The all path elements except the first should not continue to looking to the parent type that is above the previous name in the path. Yes, I've already...
> Reading the webide code gave me come clues what us going on. As i understand this flags behavior is webide specific and is not part of generated code? Yes,...
Have you tried it? What's the problem? Does it print any error message?
@Mingun: > The second, the same script builds JS, which I also want to skip because I do not test JS and do not change any JS-specific code. I personally...
This looks quite similar to https://github.com/kaitai-io/kaitai_struct/issues/919, but subtly different. In both cases, I think it makes sense to adopt https://github.com/kaitai-io/kaitai_struct/issues/245. Although it doesn't solve the problem (we still have to...
This reminds me of https://github.com/kaitai-io/kaitai_struct/issues/170#issuecomment-1370307559 🙂 The point is that we've never thought about the possibility that docstrings may contain any special character sequences. Most of the time they don't,...
> I would've probably come up with escaping backslashes and other characters, but this sounds better. I suppose that the only character sequence that you have to care about in...
@generalmimon - https://github.com/kaitai-io/kaitai_struct/issues/1226#issuecomment-2848541260: > I suppose that the only character sequence that you have to care about in a raw triple-quoted string (`r"""`) is three quotes in a row (`"""`),...
@armijnhemel: > The correct fix would indeed to escape it. Yeah. About the way to escape it, I'm thinking of ending the triple-quoted string literal, inserting `'"""'` and resuming the...