https://github.com/serradura/tita.js
https://github.com/serradura/tita.js
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/serradura/tita.js
- Owner: serradura
- Created: 2012-02-06T20:02:43.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-02-14T02:55:40.000Z (over 13 years ago)
- Last Synced: 2025-02-17T21:07:41.471Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 184 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
## ROADMAP
### Version.: 0.1.X
var A = Tita.class({
initialize: function () {
//constructor
},instanceAttribute: 1,
instanceMethod: function () {
},this: { // Class definitions
classAttribute: 2,classMethod: function () {}
}
});### Version.: 0.2.X
var B = Tita.class({
initialize: function () {
//constructor
},public: {
pubMethod: function () {
//...
}
}private: {
priMethod: function (foo) {
//...
}
}
});var b = new B();
b.send('priMethod', 'Foo');### Version.: 0.3.X
var C = Tita.class({
super: A,initialize: function () {
//constructor
},instanceMethod: function () {
this._super();
}protected: {
//...
}this: {
classMethod: function () {
this._super();
}
}
});