Soren Valle
08/15/2019, 4:14 PMobject {}
with any number of properties and functions that will be processed in a given way. I would like to mark the properties to make logical decisions about them in the processor. If I understand correctly, js annotations are not possible. Is there another way? What I need specifically is I need properties of the object to exist in the definition but not the final product. Potentially I could have val prop1: String = "value" and val prop2: String = "value2"
and I would like to include prop1
but not prop2
.anton.bannykh
08/16/2019, 7:50 AMA.prototype.foo = ...
and remove those). You could also inherit from an interface. In that case there will be a block of code, which looks like YOUR_OBJECT.prototype.foo = BASE_INTERFACE.prototype.foo
.Soren Valle
08/16/2019, 2:47 PM