2 writes to NestedSymbols
System.Workflow.Activities (2)
Rules\Parser\Symbol.cs (2)
75NestedSymbols = new Dictionary<string, Symbol>(); 93NestedSymbols = new Dictionary<string, Symbol>();
11 references to NestedSymbols
System.Workflow.Activities (11)
Rules\Parser\Parser.cs (1)
764foreach (Symbol nestedSym in nsSym.NestedSymbols.Values)
Rules\Parser\Symbol.cs (10)
74if (NestedSymbols == null) 78if (!NestedSymbols.TryGetValue(nsName, out ns)) 81NestedSymbols.Add(nsName, ns); 92if (NestedSymbols == null) 96if (NestedSymbols.TryGetValue(typeName, out existingSymbol)) 104NestedSymbols[typeName] = overloadSym; 113NestedSymbols.Add(typeName, typeSym); 120NestedSymbols.TryGetValue(memberName, out nestedSym); 126ArrayList members = new ArrayList(NestedSymbols.Count); 127foreach (Symbol sym in NestedSymbols.Values)