Question: In a certain encrypted message which has information about the locations, the characters are jumbled such that first character of the first word is followed by the first character of the second word, then it is followed by second ...

Question: I want to collect data about test to an external database, where I would collect all assert and parse the expected value versus the actual result. To describe what I want in code: The data I want to collect ...

Question: I’m trying to write a function that will use AST to determine if a certain string has been hard-coded into a print function call. For example if this is the entire Python file: I get the tree as follows: ...

Question: I’m trying to prototype a clang-tidy matcher with clang-query to find using namespace directive with a certain name like using namespace ns1::ns2;. With clang-query I tried these variants but none is matching anything: Is usingDirectiveDecl the right matcher for ...

Question: I am trying to parse PlantUML Sequence diagram using ANTLR grammar. I am able to generate an AST as per my need. But the only issue I am facing is while extracting the activity name. PlantUML SequenceDiagram Grammar : ...

Question: I use eslint on a TypeScript project and have some rule in no-restricted-syntax config that check naming for async method, like : I’m searching for something to verify private function naming. But I can’t find a selector to select ...