Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ DefinedIn()

bool System.Linq.Expressions.Interpreter.LabelInfo.DefinedIn ( LabelScopeInfo scope)
inlineprivate

Definition at line 131 of file LabelInfo.cs.

132 {
133 if (_definitions == scope)
134 {
135 return true;
136 }
138 {
139 return hashSet.Contains(scope);
140 }
141 return false;
142 }
bool ICollection< KeyValuePair< TKey, TValue > >. Contains(KeyValuePair< TKey, TValue > keyValuePair)

References System.Linq.Expressions.Interpreter.LabelInfo._definitions, and System.Collections.Generic.Dictionary< TKey, TValue >.Contains().

Referenced by System.Linq.Expressions.Interpreter.LabelInfo.ValidateJump().