JavaScript Object Oriented Libraries Benchmark (v111)

Revision 111 of this benchmark created by Mark Johnson on


Description

=== 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

Preparation HTML

<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/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/ptclass.js">
</script>
<script src="http://pastebin.com/raw.php?i=pG7KfSuD">
</script>
<script src="http://pastebin.com/raw.php?i=sZYjY1PP">
</script>
<script>
  var JSClassPerson = new JS.Class({
    initialize: function(name) {
      this.name = name;
    },
    setAddress: function(country, city, street) {
      this.country = country;
      this.city = city;
      this.street = street;
    }
  });

  var JSClassFrenchGuy = new JS.Class(JSClassPerson, {
    initialize: function($super, name) {
      this.callSuper(name);
    },
    setAddress: function($super, city, street) {
      this.callSuper('France', city, street);
    }
  });

  var JSClassParisLover = new JS.Class(JSClassFrenchGuy, {
    initialize: function($super, name) {
      this.callSuper(name);
    },
    setAddress: function($super, street) {
      this.callSuper('Paris', street);
    }
  });
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
JSFace
var p3 = new JSFaceParisLover("Mary");
p3.setAddress("CH");
ready
my.Class
var p6 = new MyParisLover("Mary");
p6.setAddress("CH");
ready
js.class
var p24 = new JSClassParisLover('Mary');
p24.setAddress('CH');
ready
Klass
var p12 = new EnderParisLover("Mary");
p12.setAddress("CH");
ready
PTClass
var p18 = new PTClassParisLover("Mary");
p18.setAddress("CH");
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.