/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/javascript/smart_pointer_templatevariables_runme.js
22 строки
497 B
Momtchil Momtchev
batch of JS run tests
31 май 2023, 19:46
31 май 2023, 19:46
bc6d6ed
Код
Авторство
О чём код?
var smart_pointer_templatevariables = require("smart_pointer_templatevariables"); d = new smart_pointer_templatevariables.DiffImContainerPtr_D(smart_pointer_templatevariables.create(1234, 5678)); // TODO xyz has been commented out in the shared test file, find out why if ((d.id != 1234)) { throw new Error; } //if ((d.xyz != 5678)) { // throw new Error; //} d.id = 4321; //d.xyz = 8765; if ((d.id != 4321)) { throw new Error; } //if ((d.xyz != 8765)) { // throw new Error; //}