jcoglan / js.class

Implementation of the core of Ruby's object system in JavaScript.

This URL has Read+Write access

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);
});