Alexey Gerasimov
Alexey Gerasimov
Currently we need to write separate code to convert pest parsed representation to our own AST representation, as shown in JSON example. The drawback of that approach is that you...
I incorrectly used `logEvent(..., withTimestamp: Date().timeIntervalSince1970)`, providing fractional number instead of integer. Event was saved to local db, but then I cannot send it (and all subsequent events too) to...
Fixes #227. I feature-gated dependency on `futures-crate`.
I need to have `Box` as source in some of my error variants. Can I achieve that without manual boxing of error before passing it to error selector?
Inspired by #233: derive `Default` for selectors without fields (unit structs). That will allow having generic context selectors, to allow caller choose which error type function must return. Although, I'm...
Currently, you cannot convert `Sink::Error` with `.context`. I suggest to add extension trait, similar to `TryStreamExt`, for Sinks, to make error conversion more convinient.
https://github.com/nestjsplus/massive/blob/ade5d9c61cff2ff5c53c0381046f6f04b1156e64/src/massive.module.ts#L82 Shouldn't here be used `allImports`?
## Description ``` $ apalache-mc check --inv=Inv mod.tla 22:32:44.075 [main] INFO at.forsyte.apalache.tla.tooling.opt.CheckCmd -- Loading configuration # Usage statistics is OFF. We care about your privacy. # If you want to...
``` com.intellij.diagnostic.PluginException: Failed to build stub tree for client.proto [Plugin: io.kanro.idea.plugin.protobuf] at com.intellij.diagnostic.PluginProblemReporterImpl.createPluginExceptionByClass(PluginProblemReporterImpl.java:23) at com.intellij.diagnostic.PluginException.createByClass(PluginException.java:89) at com.intellij.psi.stubs.StubTreeBuilder.handleStubBuilderException(StubTreeBuilder.java:105) at com.intellij.psi.stubs.StubTreeBuilder.lambda$buildStubTree$3(StubTreeBuilder.java:142) at com.intellij.psi.impl.PsiManagerImpl.runInBatchFilesMode(PsiManagerImpl.java:462) at com.intellij.psi.stubs.StubTreeBuilder.buildStubTree(StubTreeBuilder.java:132) at com.intellij.psi.stubs.StubUpdatingIndex$2.computeValue(StubUpdatingIndex.java:198) at com.intellij.psi.stubs.StubUpdatingIndex$2.computeValue(StubUpdatingIndex.java:176) at com.intellij.psi.stubs.StubUpdatingIndex$2.computeValue(StubUpdatingIndex.java:145) at...
I need to keep many json schemas and validate them against one json document, so I need to iteratre througn collection of schemas. But it isn't possible as Schema does'n...