blob: 2823a678852f2f6ea08462f6c3cce6059f7146f8 [file] [log] [blame]
var cpp11_alternate_function_syntax = require("cpp11_alternate_function_syntax");
a = new cpp11_alternate_function_syntax.SomeStruct();
res = a.addNormal(4, 5);
if (res != 9) {
throw new Error("SomeStruct::addNormal(4,5) returns ", res, " should be 9.");
}
res = a.addAlternate(4, 5);
if (res != 9) {
throw new Error("SomeStruct::addAlternate(4,5) returns ", res, " should be 9.");
}
res = a.addAlternateConst(4, 5);
if (res != 9) {
throw new Error("SomeStruct::addAlternateConst(4,5) returns ", res, " should be 9.");
}
res = a.addAlternateNoExcept(4, 5);
if (res != 9) {
throw new Error("SomeStruct::addAlternateNoExcept(4,5) returns ", res, " should be 9.");
}
res = a.addAlternateConstNoExcept(4, 5);
if (res != 9) {
throw new Error("SomeStruct::addAlternateConstNoExcept(4,5) returns ", res, " should be 9.");
}