skipComma method

bool skipComma()

Implementation

bool skipComma(){
	if( (_get == null) || (_get!._code != ClipGlobal.codeOperator) || (_get!._token != ClipGlobal.opComma) ){
		return false;
	}
	_get = _get!._next;
	return true;
}