-
This issue is meant to be a scratchpad for ideas and feedback on improving how types and values are handled in the interpreter. There have been several different feature requests recently that _could_…
-
### Description
In https://github.com/apple/swift-syntax/pull/2450 we introduced
```
@freestanding(expression)
public macro checkGeneric_root() = #externalMacro(module: "MacroDefinition", typ…
ktoso updated
3 months ago
-
In the following code example:
```igorpro
switch(var)
case 1:
case 2:
```
the counting for case 2 is wrong as it is the sum of case 1 and 2.
To fix that one can think about something like:
…
-
Here's example code from temper-regex-parser that uses a cast to ensure we see `List` rather than `List`:
```ts
new Map([
// Make one explicit simple string just for demo.
…
-
I am wondering what the correct way is to just run `makedocs` **locally**, ie in a git repository that is **not present on Github or any similar service**. I just want the docs in `docs/build`.
Wh…
tpapp updated
1 month ago
-
**Description**
In the dotnet-aicommitmessage tool, which generates commit messages using the ChatGPT API (LLM models), implement a business rule to retain the original commit message when it follo…
-
Any code with import expression inside string literal or comment throws "Error: SyntaxError: possible import expression rejected around line 1".
As example:
```javascript
const v = "const MyComp…
-
import com.hy.common.core.exception.entity.BusinessException;
import com.hy.common.core.utils.MathUtils;
import com.hy.common.core.utils.StringUtils;
import core.Mathematical_Expression;
imp…
-
Zod version `3.21.4`
# Problem
Using `.refine()` or `.superRefine()` on `ZodObject` (`z.object()`) prevents the use of `.shape` or `.merge()` method as the returned type is a `ZodEffects` and no…
-
## Question
We need to parse string math expression with complex syntaxis, as in, e^(jwt)) where j=sqrt(-1).
Does MathExpr accepts complex? Do we need to modify something to used?
Thanks.