public
Description: Implementation of the core of Ruby's object system in JavaScript.
Homepage: http://jsclass.jcoglan.com
Clone URL: git://github.com/jcoglan/js.class.git
jcoglan (author)
Sat Oct 17 12:54:39 -0700 2009
commit  ed1c0e1c635e713c564b08474ccb54bd7188714a
tree    4cbfc751ed64bc6600ae7b043ef93279c2b0c1b8
parent  524a637b0b1388544d7f7361585dadee3efe2051 parent  c2b364002a2ee3e7504a3452dbc85120fe6d825c
js.class / loader.js
100644 10 lines (6 sloc) 0.175 kb
1
2
3
4
5
6
7
8
9
10
JSCLASS_PATH = 'build/min/';
load(JSCLASS_PATH + 'loader.js');
 
load('test/fixtures/config.js');
 
require('InheritanceTester', function() {
    print(InheritanceTester);
});