Skip to content

How do you conditionally generate code? #80

Answered by GoogleFeud
farhansolodev asked this question in Q&A
Discussion options

You must be logged in to vote

Hi! You can do this with the $$typeMetadata built-in macro, which separates the object's properties and methods:

function $test<T>(toName: string, fromName: string) {
    +[[$$typeMetadata!<T>(true).properties], (prop: TypeMetadataProperty) => {
        $$ts!(`${toName}.${prop.name} = ${fromName}.${prop.name}`);
    }]
}

playground

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@farhansolodev
Comment options

Answer selected by farhansolodev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants