Quentin Sabah
Quentin Sabah
Hi, I have a custom language (say `foolang`) registered in the `hljs` instance, is it possible to highlight a language that is not listed there: https://github.com/rtfpessoa/diff2html/blob/e5c813949fcbb9a0b96ce528f49539d63cbdcf40/src/ui/js/highlight.js-helpers.ts#L164 It is properly detected...
Add option `highlightLanguage` to set the highlight language. Default value is `''` to select the language based on the diffed filename extension. This is related to #437.
Hi, This simple program crashes with the interpreter. Is this construction allowed? If not it should be detected and rejected. ``` .decl count_even(cnt:number) .output count_even count_even(cnt) :- cnt = count...
Nous avons actuellement "Compilateur à la volée" pour "JIT Compiler". Mais une meilleure interprétation de "Just-In-Time" serait "Juste-À-Temps". Et "À La Volée" correspond à "On The Fly" (Sur La Mouche).
Hi, I am wondering what is the purpose of this condition: https://github.com/souffle-lang/souffle/blob/66b96fd07e7124d0e46bcf7cdc1cc5bf61f54cc3/src/ram/transform/Parallel.cpp#L50 It prevents creating parallel evaluation of "trivial" insert clauses: ``` .decl foo(n:number, k:number) .output foo() .decl bar(n:number) .input...
Conjunctions with hundreds of terms would otherwise overflow the engine stack with left/right recursion. The issue has been observed in `Debug` build with ~200 terms.
### Did you check existing issues? - [X] I have read all the [tree-sitter docs](https://tree-sitter.github.io/tree-sitter/using-parsers) if it relates to using the parser - [X] I have searched the existing issues...
I have observed sporadic crashes when multi-threading is enabled on Apple M processors. The weaker memory model of ARM architecture compared to X86 reveals subtle concurrency bugs. I am suspecting...
The macOS 12 runner image will be removed by December 3rd, 2024 See https://github.com/actions/runner-images/issues/10721