class Build::Files::Glob

def eql?(other)

@returns [Boolean] True if both globs have the same root and pattern.
@parameter other [Glob] The other glob to compare.
Check equality with another glob.
def eql?(other)
	self.class.eql?(other.class) and @root.eql?(other.root) and @pattern.eql?(other.pattern)
end