Tools.SymbolsGen.Find C# (CSharp) Method

Find() public method

public Find ( CSymbol sym ) : bool
sym CSymbol
return bool
        public bool Find(CSymbol sym)
        {
            if (sym.yytext.Equals("Null")) // special case
                return true;
            if (sym.yytext[0]=='\'')
                return true;
            if (stypes==null)
                return false;
            return stypes._Find(sym.yytext)!=null;
        }