as-pect / visitor-as

Visitor utilities for AssemblyScript compiler transforms
Apache License 2.0
37 stars 11 forks source link

feat: add exportAs decorator #7

Closed willemneal closed 4 years ago

willemneal commented 4 years ago

This decorator allows renaming exported functions to keywords, e.g.

@exportAs("new")
function main(): u32 {
    return 42;
}