Yauheni Khnykin

Results 19 issues of Yauheni Khnykin

Currently when modularisation is used it's necessary to pass list of lime files twice: once as PUBLIC sources for target_sources(... PUBLIC ) and second time to apigen_generate(... LIME_FILES ) It...

cmake

When lime files are changed it trigger custom step to regenerate code. It triggers to recompile `*_glue.cpp` because they are specified as OUTPUT of custom command which runs `runGenerate.cmake`. But...

cmake

In the same way as it's done for **@Cpp(const)**

Example: ``` class ClassWithStructWithSkipLambdaInPlatform { struct SkipLambdaInPlatform { intField: Int @Skip(Java, Dart, Swift) lambda SomeLambda = () -> Int // Network factory @Skip(Java, Dart, Swift) someLambda: SomeLambda? } } ```...

bug

If root element is `` (not ``) and there is `` (I think any other also will trigger the issue) then `junitparser verify ...` fails with ``` Traceback (most recent...

Following error produced: ``` Sources/CucumberSwift/Runner/CucumberTest.swift:102: error: -[CucumberSwift.CucumberTest testGherkin] failed - File: file:///.../test.feature unexpected end of file, expected: #TagLine, #ScenarioLine, #Comment, #44 ``` If there is a comment after tag: ```...

### 🤔 What's the problem you've observed? During compilation I faced R8 error that javax.xml.stream.* are missing: ``` ERROR: R8: Missing class javax.xml.stream.XMLOutputFactory (referenced from: void io.cucumber.junitxmlformatter.XmlReportWriter.writeXmlReport(java.io.Writer)) Missing class javax.xml.stream.XMLStreamWriter...

For Flutter, the nested struct of an internal struct is exposed. ``` package sdk.core @Internal struct OuterStruct { struct InnerStruct { a: Int = 1 } inner: InnerStruct = {}...