public ToolTipData(ICSharpCode.NRefactory.PlayScript.SyntaxTree unit, ICSharpCode.NRefactory.Semantics.ResolveResult result, ICSharpCode.NRefactory.PlayScript.AstNode node, CSharpAstResolver file)
 {
     this.Unit     = unit;
     this.Result   = result;
     this.Node     = node;
     this.Resolver = file;
 }
        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
        {
            SyntaxTree o = other as SyntaxTree;

            return(o != null && this.Members.DoMatch(o.Members, match));
        }