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

◆ ContainsTarget()

bool System.Linq.Expressions.Interpreter.LabelScopeInfo.ContainsTarget ( LabelTarget target)
inlinepackage

Definition at line 32 of file LabelScopeInfo.cs.

33 {
34 if (_labels == null)
35 {
36 return false;
37 }
38 return _labels.ContainsKey(target);
39 }
HybridReferenceDictionary< LabelTarget, LabelInfo > _labels

References System.Linq.Expressions.Interpreter.LabelScopeInfo._labels.

Referenced by System.Linq.Expressions.Interpreter.LightCompiler.TryPushLabelBlock().