Files
001code-html--cocos/scratch-vm/test/fixtures/dispatch-test-service.js
2026-09-07 09:55:36 +08:00

16 lines
279 B
JavaScript

class DispatchTestService {
returnFortyTwo () {
return 42;
}
doubleArgument (x) {
return 2 * x;
}
throwException () {
throw new Error('This is a test exception thrown by DispatchTest');
}
}
module.exports = DispatchTestService;