bool INode.DoMatchCollection(Role role, INode pos, Match match, BacktrackingInfo backtrackingInfo) { return(child.DoMatchCollection(role, pos, match, backtrackingInfo)); }
bool INode.DoMatchCollection(Role role, INode pos, Match match, BacktrackingInfo backtrackingInfo) { AstNode o = pos as AstNode; return((pos == null || o != null) && DoMatch(o, match)); }