Skip to content

Instantly share code, notes, and snippets.

@quintesse
Created October 14, 2014 19:31
Show Gist options
  • Save quintesse/ef07bdc874f1e6b12fa6 to your computer and use it in GitHub Desktop.
Save quintesse/ef07bdc874f1e6b12fa6 to your computer and use it in GitHub Desktop.
//$webrun_full_script
import ceylon.language.meta.declaration {
ValueDeclaration
}
shared void run() {
for (dec in `class String`.memberDeclarations<ValueDeclaration>()) {
print(dec);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment