aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/javascript/template_extend1_runme.js
blob: 20ebbf24b20438b24841d2e7413fba959656521d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var template_extend1 = require("template_extend1");

a = new template_extend1.lBaz();
b = new template_extend1.dBaz();

if (a.foo() != "lBaz::foo") {
    throw new Error;
}

if (b.foo() != "dBaz::foo") {
    throw new Error;
}