aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/javascript/using_protected_runme.js
blob: 990f561113a7e17d1f7e0305a202dfa8ec1bcfa0 (plain)
1
2
3
4
5
6
7
8
var using_protected = require("using_protected");

f = new using_protected.FooBar();
f.x = 3;

if (f.blah(4) != 4) {
    throw new Error("blah(int)");
}