How do you conditionally generate code? #80
-
I want to generate code for every property of a class Foo except for Foo's methods. I am using To be clear, this: +[[$$propsOfType!<F>()], (prop) => {
$$ts!(`${toVarName}.${prop} = ${fromVarName}.${prop}`)
}]; generates this: this.prop1 = prop.prop1;
this.prop2 = prop.prop2;
this.prop3 = prop.prop3;
this.prop420 = prop.prop420;
this.prop1337 = prop.prop1337;
this.someMethod = prop.someMethod; // dont want this but I'd like to do something like: +[[$$propsOfType!<F>()], (prop) => {
if (Object.keys(F).includes(prop)) { // just pseudocode, does not compile
$$ts!(`${toVarName}.${prop} = ${fromVarName}.${prop}`)
}
}]; to generate: this.prop1 = prop.prop1;
this.prop2 = prop.prop2;
this.prop3 = prop.prop3;
this.prop420 = prop.prop420;
this.prop1337 = prop.prop1337;
// this.someMethod = prop.someMethod; // this is now not generated |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi! You can do this with the function $test<T>(toName: string, fromName: string) {
+[[$$typeMetadata!<T>(true).properties], (prop: TypeMetadataProperty) => {
$$ts!(`${toName}.${prop.name} = ${fromName}.${prop.name}`);
}]
} |
Beta Was this translation helpful? Give feedback.
Hi! You can do this with the
$$typeMetadata
built-in macro, which separates the object's properties and methods:playground