1 write to Type
Microsoft.CodeAnalysis.Workspaces (1)
CodeCleanup\AbstractCodeCleanerService.cs (1)
654this.Type = type;
10 references to Type
Microsoft.CodeAnalysis.Workspaces (10)
CodeCleanup\AbstractCodeCleanerService.cs (10)
173return TryCreateTextSpan(GetPreviousTokenStartPosition(previousTokenMarker.Type, previousToken), 174GetNextTokenEndPosition(nextTokenMarker.Type, nextToken), 193return TryCreateTextSpan(node.SpanStart, GetNextTokenEndPosition(nextTokenMarker.Type, nextToken), out span); 205return TryCreateTextSpan(GetPreviousTokenStartPosition(previousTokenMarker.Type, previousToken), node.Span.End, out span); 216if (hasMultiplePreviousToken && previousTokenMarker.Type == SpanMarkerType.BeginningOfFile) 219span = TextSpan.FromBounds(node.SpanStart, GetNextTokenEndPosition(nextTokenMarker.Type, nextToken)); 223if (hasMultipleNextToken && nextTokenMarker.Type == SpanMarkerType.EndOfFile) 226span = TextSpan.FromBounds(GetPreviousTokenStartPosition(previousTokenMarker.Type, previousToken), node.Span.End); 441return startMarker.Type == SpanMarkerType.BeginningOfFile && endMarker.Type == SpanMarkerType.EndOfFile;