12 references to Name
System.Core (12)
Microsoft\Scripting\Ast\DebugViewWriter.cs (3)
128Debug.Assert(String.IsNullOrEmpty(target.Name)); 1117if (string.IsNullOrEmpty(target.Name)) { 1121return GetDisplayName(target.Name);
Microsoft\Scripting\Ast\ExpressionStringBuilder.cs (2)
799if (!String.IsNullOrEmpty(target.Name)) { 800Out(target.Name);
Microsoft\Scripting\Ast\LabelTarget.cs (2)
59return String.IsNullOrEmpty(this.Name) ? "UnamedLabel" : this.Name;
Microsoft\Scripting\Compiler\LabelInfo.cs (5)
115throw Error.LabelTargetAlreadyDefined(_node.Name); 131throw Error.AmbiguousJump(_node.Name); 163throw Error.NonLocalJumpWithValue(_node.Name); 167throw Error.AmbiguousJump(_node.Name); 206throw Error.LabelTargetUndefined(_node.Name);