-
## User Story
As a developer working on the MapLibre source, I want to be able to make changes with the full support of static type analysis, in order to move faster breaking less things, and being…
-
Type safety in general is a bit shaky at the moment. I'm mostly referring to proposed solutions here.
Here are some examples:
1. I can go out OOB with tuples in storage with no issues.
* This i…
-
### Requirements
I was just examining the API to look at adopting a feature-flagging standard and surprised to find that after defining a strict set of variants, there is no Typescript compiler error…
-
Currently the loading methods (e.g. `audobject.from_yaml_s`) return an instance of `audobject.Object`, causing the loss of specific type information for LSPs and tools like mypy.
It might be a good…
-
Take this code block:
```typescript
const Filter = createToken({
name: "Filter" as const,
pattern: new RegExp("filter", "i"),
})
const functionName = this.CONSUME(Filter);
return { type:…
-
Retrieving the field type in `read_header` and `_write_header` requires to access a global variable.
This introduces two serious issues:
1. Using in the same code `pynrrd` in combination with an…
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Describe the bug
I am using .net 8 to build one of my APIs.
A controller method declared to return Task…
-
The `await` operator was designed to be type safe. That is, the `await` operator can operate on values of any type. When given a value that is not asynchronous, it returns its operand unchanged. For e…
-
I can run the examples (with some small fixes for the latest Llama Stack). However, the safety example errors at the point:
`response = client.safety.run_shield`
with:
`fastapi.exceptions.Re…
-
## Background and Motivation
ASP.Net Core 8 introduced the `RazorComponentResult` which allows a developer to render Razor Components from normal endpoints. This is very useful for for example [HTM…