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