Skip to content

Instantly share code, notes, and snippets.

@rolaveric
Created October 31, 2014 09:39
Show Gist options
  • Save rolaveric/75591c7a45a38cfe8983 to your computer and use it in GitHub Desktop.
Save rolaveric/75591c7a45a38cfe8983 to your computer and use it in GitHub Desktop.
Annotations from AtScript
// Annotation in AtScript
@MyAnnotation({a: 'b'})
function fn() {}
// Equivalent ES5
function fn() {}
fn.annotations = [new MyAnnotation({a: 'b'})];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment