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="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/jsface.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/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/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/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/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/lib/ptclass.js"</script> <script src="http://dl.dropbox.com/u/7677927/oop-benchmark/all.js"></script> <script src="http://dl.dropbox.com/u/7677927/oop-benchmark/all.js"></script> <script src="https://raw.github.com/IndigoUnited/dejavu/self_static/dist/regular/loose/dejavu.js"></script> <script> var dejavuClassPerson = dejavu.Class({ initialize: function(name){ this.name = name; }, setAddress: function(country, city, street) { this.country = country; this.city = city; this.street = street; } }); var dejavuClassFrenchGuy = dejavu.Class({ $extends: dejavuClassPerson, setAddress: function(city, street) { this.$super("France", city, street); } }); var dejavuClassParisLover = dejavu.Class({ $extends: dejavuClassFrenchGuy, setAddress: function(street) { this.$super('Paris', street); } }); var dejavuSuperAlternativeClassPerson = dejavu.Class({ initialize: function(name){ this.name = name; }, setAddress: function(country, city, street) { this.country = country; this.city = city; this.street = street; } }); var dejavuSuperAlternativeClassFrenchGuy = dejavu.Class({ $extends: dejavuSuperAlternativeClassPerson, setAddress: function(city, street) { dejavuSuperAlternativeClassFrenchGuy .$parent.prototype.setAddress.call(this, "France", city, street); } }); var dejavuSuperAlternativeClassParisLover = dejavu.Class({ $extends: dejavuSuperAlternativeClassFrenchGuy, setAddress: function(street) { dejavuSuperAlternativeClassParisLover .$parent.prototype.setAddress.call(this, 'Paris', street); } }); var p6 = new MyParisLover("Mary"); var p9 = new JRParisLover("Mary"); var p12 = new EnderParisLover("Mary"); var p3 = new JSFaceParisLover("Mary"); var p15 = new ClassyParisLover("Mary"); var p18 = new PTClassParisLover("Mary"); var p19 = new dejavuClassParisLover("Mary"); var p20 = new dejavuSuperAlternativeClassParisLover("Mary"); </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 p3.setAddress("CH"); Test 2 Title Async (check if this is an asynchronous test) Code p6.setAddress("CH"); Test 3 Title Async (check if this is an asynchronous test) Code p9.setAddress("CH"); Test 4 Title Async (check if this is an asynchronous test) Code p12.setAddress("CH"); Test 5 Title Async (check if this is an asynchronous test) Code p15.setAddress("CH"); Test 6 Title Async (check if this is an asynchronous test) Code p18.setAddress("CH"); Test 7 Title Async (check if this is an asynchronous test) Code p19.setAddress("CH"); Test 8 Title Async (check if this is an asynchronous test) Code p20.setAddress("CH");