-
**Describe the bug**
I'm probably doing something dumb, but I tried to implement an MCVE for (reference) tuples using twinBASIC's generics abilities:
**To Reproduce**
```vb
Public Class Tuple(Of…
-
We make generics with empty implementations in a couple places:
``` factor
GENERIC: integer>fixnum ( x -- y ) foldable flushable
M: bignum integer>fixnum bignum>fixnum ; inline
M: fixnum integer>fi…
-
I would like to know if is possible to have a way to resolve the generic name, for example:
```ts
enum MyEnum {
A: 'a',
B: 'b'
}
const Id = (c: Foo[keyof Foo]) => {
return `${na…
-
The addition of types are ok, it helps catch API compliance with the compiler.
However without generics, there are a whole class of potential runtime errors that could have been easily caught at co…
-
**Describe the bug**
Each call to a function that uses reified generics appears to increase the memory usage of hhvm. This memory doesn't get reclaimed and this can continue until the program crashes…
-
Small description, big task :)
Dealing with nullable will be handled separately - https://github.com/mono/Embeddinator-4000/issues/229
-
I have a model structure like with:
```
@JsonObject
abstract class SearchResult {
@JsonField
var total: Int = 0
@JsonField
var count: Int = 0
@JsonField
var limit: Int = 0
…
-
I've been using easymock 3.4 from Kotlin tests, where the mock can be declared like:
```
val mockEnv = EasyMock.mock(Environment::class.java)
```
After upgrading to easymock 4.0.2 (Likely relate…
-
see https://github.com/Sable/soot/issues/1225
- [x] create Jimple
- [ ] implement in SourcecodeFrontend
- [ ] Bytecodefrontend (is it somehow possible to infer that info?)
info resource:
http…
-
Why don't we have generic for the model attributes?
e.g.
```ts
interface TypedModelAttributes {
id: number;
optionalData?: object;
}
class TypedModel extends Model {
...
}
// usage…