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