Skip to content

Instantly share code, notes, and snippets.

@ceylonwebide
Created September 26, 2015 18:33
Show Gist options
  • Save ceylonwebide/5e9b02372afd7b30c00d to your computer and use it in GitHub Desktop.
Save ceylonwebide/5e9b02372afd7b30c00d to your computer and use it in GitHub Desktop.
EXAMPLE: Local Import
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