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

◆ TryGetLabelInfo()

bool System.Linq.Expressions.Interpreter.LabelScopeInfo.TryGetLabelInfo ( LabelTarget target,
[NotNullWhen(true)] out LabelInfo info )
inlinepackage

Definition at line 41 of file LabelScopeInfo.cs.

42 {
43 if (_labels == null)
44 {
45 info = null;
46 return false;
47 }
48 return _labels.TryGetValue(target, out info);
49 }
HybridReferenceDictionary< LabelTarget, LabelInfo > _labels

References System.Linq.Expressions.Interpreter.LabelScopeInfo._labels, and System.info.

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