Editing JavaScript Object Oriented Libraries Benchmark This edit will create a new revision. Your details (optional) Name Email (won’t be displayed; might be used for Gravatar) URL Test case details Title * Published (uncheck if you want to fiddle around before making the page public) Description (in case you feel further explanation is needed)(Markdown syntax is allowed) === SUPER CALL === MooTools and Ext Core are removed because they add extra information into native classes. They slow down other libraries. Ext Core OOP is fast, MooTools OOP is super slow! TODO: - Add YUI Are you a spammer? (just answer the question) Preparation code Preparation code HTML (this will be inserted in the <body> of a valid HTML5 document in standards mode) (useful when testing DOM operations or including libraries) <script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/jsface.js"></script> <script src="https://raw.github.com/nodirt/defineClass/master/defineClass.js"></script> <script src="https://raw.github.com/kriszyp/compose/master/compose.js"></script> <script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/my.class.js"></script> <script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/jrclass.js"></script> <script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/klass.js"></script> <script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/classy.js"></script> <script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/ptclass.js"></script> <script src="http://dl.dropbox.com/u/7677927/oop-benchmark/all.js"></script> <script src="http://indigounited.com/dejavu/dejavu.js"></script> <script> var JS={VERSION:"2.2.1"};JS.Class=function(a){function c(a){for(prop in a){if(prop==="statics"){for(sprop in a.statics){this.constructor[sprop]=a.statics[sprop]}}else{if(typeof this.constructor.prototype[prop]=="function"){var b=this.constructor.prototype[prop];var c=this;delete this.constructor.prototype[prop];(this.constructor.prototype["parent"]=this.constructor.prototype["parent"]||{})[prop]=b;this.constructor.prototype[prop]=a[prop]}else{this.constructor.prototype[prop]=a[prop]}}}}function b(){return function(){if(typeof this["construct"]==="function"&&d===false){this.construct.apply(this,arguments)}}}var d=true;this.constructor=b();d=false;c.call(this,a);this.constructor.extend=function(a){d=true;this.constructor=b();this.constructor.prototype=new(new this).constructor;d=false;c.call(this,a);this.constructor.extend=function(a){var e;var f=this;d=true;this.constructor=b();this.constructor.prototype=new this;if(e!==undefined){this.constructor.prototype["construct"]=e}d=false;c.call(this,a);this.constructor.extend=function(a){return f.extend.apply(this,[a])};return this.constructor};return this.constructor};return this.constructor} var classextend = JS.Class({ initialize: function(name){ this.name = name; }, setAddress: function(country, city, street) { this.country = country; this.city = city; this.street = street; } }); var dejavuClassPerson = dejavu.Class.declare({ initialize: function(name){ this.name = name; }, setAddress: function(country, city, street) { this.country = country; this.city = city; this.street = street; } }); var dejavuClassFrenchGuy = dejavu.Class.declare({ $extends: dejavuClassPerson, setAddress: function(city, street) { this.$super('France', city, street); } }); var dejavuClassParisLover = dejavu.Class.declare({ $extends: dejavuClassFrenchGuy, setAddress: function(street) { this.$super('Paris', street); } }); var dejavuClassPerson2 = dejavu.Class.declare(function () { return { initialize: function(name){ this.name = name; }, setAddress: function(country, city, street) { this.country = country; this.city = city; this.street = street; } }; }, true); var dejavuClassFrenchGuy2 = dejavuClassPerson2.extend(function ($super) { return { setAddress: function(city, street) { $super.setAddress.call(this, 'France', city, street); } }; }, true); var dejavuClassParisLover2 = dejavuClassFrenchGuy2.extend(function ($super) { return { setAddress: function(street) { $super.setAddress.call(this, 'Paris', street); } }; }, true); var dcClassPerson = defineClass({ constructor: function(name){ this.name = name; }, setAddress: function(country, city, street) { this.country = country; this.city = city; this.street = street; } }); var dcClassFrenchGuy = defineClass({ _super: dcClassPerson, setAddress: function(city, street) { this._super('France', city, street); } }); var dcClassParisLover = defineClass({ _super: dcClassFrenchGuy, setAddress: function(street) { this._super('Paris', street); } }); var ComposeClassPerson = Compose(function (name){ this.name = name; },{ setAddress: function(country, city, street) { this.country = country; this.city = city; this.street = street; console.log(this); } }); var ComposeClassFrenchGuy = Compose(ComposeClassPerson, { setAddress: function(city, street) { Compose.call(ComposeClassPerson, function () { setAddresss('France', city, street);}) } }); var ComposeParisLover = Compose(ComposeClassFrenchGuy, { setAddress: function(street) { Compose.call(ComposeClassFrenchGuy , function () { setAddresss('Paris', street);}); } }); </script> Include JavaScript libraries as follows: <script src="//cdn.ext/library.js"></script> Define setup for all tests (variables, functions, arrays or other objects that will be used in the tests) (runs before each clocked test loop, outside of the timed code region) (e.g. define local test variables, reset global variables, clear canvas, etc.) (see FAQ) Define teardown for all tests (runs after each clocked test loop, outside of the timed code region) (see FAQ) Code snippets to compare Test 1 Title Async (check if this is an asynchronous test) Code var p3 = new JSFaceParisLover("Mary"); p3.setAddress("CH"); Test 2 Title Async (check if this is an asynchronous test) Code var p6 = new MyParisLover("Mary"); p6.setAddress("CH"); Test 3 Title Async (check if this is an asynchronous test) Code var p9 = new JRParisLover("Mary"); p9.setAddress("CH"); Test 4 Title Async (check if this is an asynchronous test) Code var p12 = new EnderParisLover("Mary"); p12.setAddress("CH"); Test 5 Title Async (check if this is an asynchronous test) Code var p15 = new ClassyParisLover("Mary"); p15.setAddress("CH"); Test 6 Title Async (check if this is an asynchronous test) Code var p18 = new PTClassParisLover("Mary"); p18.setAddress("CH"); Test 7 Title Async (check if this is an asynchronous test) Code var p19 = new dejavuClassParisLover("Mary"); p19.setAddress("CH"); Test 8 Title Async (check if this is an asynchronous test) Code var p20 = new dejavuClassParisLover2("Mary"); p20.setAddress("CH"); Test 9 Title Async (check if this is an asynchronous test) Code var p21 = new dcClassParisLover("Mary"); p21.setAddress("CH"); Test 10 Title Async (check if this is an asynchronous test) Code var p22 = new ComposeParisLover("Mary"); p22.setAddress("CH"); Test 11 Title Async (check if this is an asynchronous test) Code var p23 = new classextend("Mary"); p23.setAddress("CH");