'use strict';
/**
* Represents a wild card argument that matches anything.
*/
class Any {
/**
* Returns string representation of this object.
* @returns {string} string representation of this object.
*/
toString() {
return '<any>';
}
}
module.exports = Any;