-
Is it possible to add smarter variable type inference to detect all the different variable types that Featuretools supports like PhoneNumber, ZipCode etc. using regex or other rules?
-
Suppose I have a field declared like this:
```
final elt = new TextAreaElement();
```
In the same file, if I type elt. followed by control-space to trigger autocompletion, I only get autocompletes f…
-
Lists are represented as recursive application of the constructor Cons in the abstract syntax, which makes it very hard to grasp and implement in the type inference algorithm. Input/ideas/solutions on…
-
I'm a huge fan of a lot of the programming patterns in Elixir.
However, you do hit a lot of key points here on why Type systems are important.
This may be a good opportunity to do a potential PR f…
-
When the model uses blfloat16 ops, the optimizer fails with the following. We should handle custom types form onnx in `_constant_folding`
```pytb
Traceback (most recent call last):
File "/works…
-
### System Info
amd64, 1gpu
### Information
- [ ] The official example scripts
- [ ] My own modified scripts
### 🐛 Describe the bug
`ValueError: Provider inline::llama-guard is not available for …
-
Given this library:
```lua
global library = record
registerCallback: function(function(string, int): string)
end
```
Should the following be resolved by inference?
```lua
library.regist…
-
When we have 2 modifiers to compose
```ts
type Mod1 = {
type: 'radio';
value: string;
};
type Mod2 = {
type: 'checkbox';
value: string[];
};
```
We must have method to give ty…
-
When working with dynamically generated Dhall, I tried using Optionals as a way to conditionally omit record keys in my output like so:
main.dhall
```dhall
let V = ./.variables.dhall
let add =…
-
There are multiple style issues that are related to the use of local variable type inference, that is, the `var` keyword. Many of these issues are related to the fact that code using the feature risks…