public bool Match(IScopeClose closer) { if (opener == null) { return(false); } return(opener.Match(closer)); }
public bool Match(IScopeClose other) { return(typeof(Close) == other.GetType()); }