Leonardo Salazar

Results 7 comments of Leonardo Salazar

Same here. Something I noted is that it works in the new UI (ide.experimental.ui) but not in the default one. Also, the associations' settings don't show the icons either. They...

@tatumizer In that situation where you are getting the value from a function, I can understand that even if you check the return value to not be null, it doesn't...

I agree with you that, in your example, the error should be shown. As you said, `jobTitle` is overridden by a getter (so a function). And as a function, its...

> Well, you could argue that the compiler can see the declaration `Person person = new Person(name: "Leonardo");` and thus, the Person is just a basic Person, in which the...

Clearly you guys know more than me in this subject, and that's probably why I still can't understand something that **seems** obvious for me and probably many of the people...

@tatumizer Many thanks, finally I understand what's happening and why is the shown error "valid".

@jongold Maybe instead of an interface for "Lab", you could use a type? ```ts export type Lab = { L: number; A: number; B: number; } ``` Declaring an interface...