JavaScript Object Oriented Libraries Benchmark (v39)

Revision 39 of this benchmark created 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/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>

Test runner

Ready to run.

Testing in
TestOps/sec
JSFace
p3.setAddress("CH");
ready
my.Class
p6.setAddress("CH");
ready
John Resig Class
p9.setAddress("CH");
ready
Klass
p12.setAddress("CH");
ready
Classy
p15.setAddress("CH");
ready
PTClass
p18.setAddress("CH");
ready
dejavu
p19.setAddress("CH");
ready
dejavu $super alternative
p20.setAddress("CH");
ready

Revisions

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