-
The [stable getters](https://github.com/dart-lang/language/issues/1518) proposal aims to make immutable properties of objects an API matter. That is, we can declare that a particular member of an inte…
-
I was searching my code and saw this. I don't have steps to reproduce anything but noticed that these getter and setter function names are wrong:
- `entity_metadata_field_verbatim_get` should be `…
laryn updated
2 months ago
-
I was searching my code and saw this. I don't have steps to reproduce anything but noticed that these getter and setter function names are wrong:
- `entity_metadata_field_verbatim_get` should be `…
laryn updated
2 months ago
-
Models currently use magic `__get` and `__set` methods to access the underlying `WP_` class properties. In order to keep the code succinct, we don't transform the property name which means needing to …
-
### Proposal
The current implementation of the Camera sensor only exposes the global pose setter. However, pose getter and local pose setter is also needed for my project needs.
### Motivation
…
-
Example models in this plugin will not work correctly with Sequelize v6 as per
https://sequelize.org/docs/v6/core-concepts/model-basics/#caveat-with-public-class-fields
Caveat with Public Class Fi…
-
If we use `getter-with-setter` as follows:
```
(define-inline (foo x) (car x))
(define-inline (foo-set! x v) (set-car! x v))
(define-inline Foo (getter-with-setter foo foo-set!))
```
`Foo` i…
-
The analyzer accepts the following code, but the CFE rejects it:
```dart
extension on Object? {
int get foo => 0;
}
test(void Function() f) {
f.foo = 0; // ERROR
}
```
The CFE is correc…
-
While rewriting the code for my own proposes, I encounter that everything can be get and set, at first this not bad, but doesn't make always sense, for example: all the owning pointers or resources wi…
-
### Suggested enhancement
I'm migrating from MBedTLS 2.28.x to 3.6.x. During that I found a few private struct members we are using, and where I didn't found any accessor function. I found [this li…