解决方法
通常,您只需使用发言名称编写函数调用:
- /*
- * @param {String} input: the text
- * @param {Function} callback(output,hasChanged): called after calculation
- */@H_403_5@
或者,如果参数需要说明,您可以使用多行描述:
/*
* @param {String} input: the text
* @param {Function} callback(result,change)
* the function that is called after calculation
* result {String}: the output of the computation
* change {Boolean}: whether a change has occurred
*/@H_403_5@