summaryrefslogtreecommitdiff
path: root/Examples/test-suite/javascript/cpp_static_runme.js
blob: c7917e12ea9897bda68c81cdfd4eac8491878a4b (plain)
1
2
3
4
5
6
7
8
9
var cpp_static = require("cpp_static");

cpp_static.StaticFunctionTest.static_func();
cpp_static.StaticFunctionTest.static_func_2(1);
cpp_static.StaticFunctionTest.static_func_3(1,2);
cpp_static.StaticMemberTest.static_int = 10;
if (cpp_static.StaticMemberTest.static_int != 10)
throw "error";