testProcess method

bool testProcess(
  1. ClipParam param,
  2. ParamInteger err
)

Implementation

bool testProcess( ClipParam param, ParamInteger err ){
	ClipLineData? line;

	if( (line = _procLine!.getLine()) == null ){
		return false;
	}

	printTest( param, line!.token()!, line.num(), line.comment() );

	return true;
}