Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for forward declaration of classes. #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

alexisferreyra
Copy link

  • Class.$define : keeps a table of existing classes to allow forward declaration of types:
Animal = Class.$define("Animal"); // forward declaration of class Animal

Horse = Class.$define("Horse", Animal, {  /* Horse methods here */  });

Animal = Class.$define("Animal", { /* animal methods here */ });
  • Class.$append : allows extending existing class object with new methods:
Animal = Class.$extend({ /* methods here */ });

Animal.$append({ newMethod: function(){ 
/*........*/ } 
});

This can be used as shortcut with $define.

  • Tests fixed and tests added for new methods.

- Class.$append : allows extending existing class object with new methods
- Class.$define : keeps a table of existing classes to allow forward declaration of types
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant