Skip to content

Instantly share code, notes, and snippets.

@twuni
Created April 20, 2012 04:47
Show Gist options
  • Save twuni/2426079 to your computer and use it in GitHub Desktop.
Save twuni/2426079 to your computer and use it in GitHub Desktop.
Evy development notes
A node has access to its ancestors, but not to its siblings.
Each node has a symbol table.
@ event a
print "In the subscriber for the event, the symbol 'a' should be accessible in the parent's symbol table, set to the value of 123."
event a=123
print "After triggering the event, the symbol 'a' should be accessible in the parent's symbol table, set to the value of 123."
event a
print "This should resolve the symbol 'a' prior to publishing the event. If 'a' cannot be resolved, then use it only as a matcher for subscribers."
After publishing a non-subscriber event, publish its children.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment