3 types derived from Symbol
System.Workflow.Activities (3)
Rules\Parser\Symbol.cs (3)
23internal class MemberSymbol : Symbol 48internal class NamespaceSymbol : Symbol 165internal abstract class TypeSymbolBase : Symbol
20 references to Symbol
System.Workflow.Activities (20)
Rules\Parser\Parser.cs (12)
613private Dictionary<string, Symbol> globalUniqueSymbols = new Dictionary<string, Symbol>(); 614private Dictionary<string, Symbol> localUniqueSymbols = new Dictionary<string, Symbol>(); 662Symbol existingSymbol = null; 764foreach (Symbol nestedSym in nsSym.NestedSymbols.Values) 985foreach (KeyValuePair<string, Symbol> kvp in globalUniqueSymbols) 992Symbol localSym = null; 999foreach (KeyValuePair<string, Symbol> kvp in localUniqueSymbols) 2011Symbol sym = null; 2062Symbol nestedSym = null; 2381Symbol sym = null;
Rules\Parser\Symbol.cs (8)
52internal Dictionary<string, Symbol> NestedSymbols; 75NestedSymbols = new Dictionary<string, Symbol>(); 77Symbol ns = null; 93NestedSymbols = new Dictionary<string, Symbol>(); 95Symbol existingSymbol = null; 117internal Symbol FindMember(string memberName) 119Symbol nestedSym = null; 127foreach (Symbol sym in NestedSymbols.Values)