Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FindTokenHelper.cs « Util « CSharpBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 327f990410565f265f0bf3985efc4fd87c3b4070 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.CodeAnalysis.Text;
using Microsoft.CodeAnalysis;

namespace ICSharpCode.NRefactory6.CSharp
{
	internal static class FindTokenHelper
	{
		/// <summary>
		/// If the position is inside of token, return that token; otherwise, return the token to the right.
		/// </summary>
		public static SyntaxToken FindTokenOnRightOfPosition<TRoot>(
			SyntaxNode root,
			int position,
			Func<SyntaxTriviaList, int, SyntaxToken> skippedTokenFinder,
			bool includeSkipped = false,
			bool includeDirectives = false,
			bool includeDocumentationComments = false)
			where TRoot : SyntaxNode
		{
			var findSkippedToken = skippedTokenFinder ?? ((l, p) => default(SyntaxToken));

			var token = GetInitialToken<TRoot>(root, position, includeSkipped, includeDirectives, includeDocumentationComments);

			if (position < token.SpanStart)
			{
				var skippedToken = findSkippedToken(token.LeadingTrivia, position);
				token = skippedToken.RawKind != 0 ? skippedToken : token;
			}
			else if (token.Span.End <= position)
			{
				do
				{
					var skippedToken = findSkippedToken(token.TrailingTrivia, position);
					token = skippedToken.RawKind != 0
						? skippedToken
						: token.GetNextToken(includeZeroWidth: false, includeSkipped: includeSkipped, includeDirectives: includeDirectives, includeDocumentationComments: includeDocumentationComments);
				}
				while (token.RawKind != 0 && token.Span.End <= position && token.Span.End <= root.FullSpan.End);
			}

			if (token.Span.Length == 0)
			{
				token = token.GetNextToken();
			}

			return token;
		}

		/// <summary>
		/// If the position is inside of token, return that token; otherwise, return the token to the left.
		/// </summary>
		public static SyntaxToken FindTokenOnLeftOfPosition<TRoot>(
			SyntaxNode root,
			int position,
			Func<SyntaxTriviaList, int, SyntaxToken> skippedTokenFinder,
			bool includeSkipped = false,
			bool includeDirectives = false,
			bool includeDocumentationComments = false)
			where TRoot : SyntaxNode
		{
			var findSkippedToken = skippedTokenFinder ?? ((l, p) => default(SyntaxToken));

			var token = GetInitialToken<TRoot>(root, position, includeSkipped, includeDirectives, includeDocumentationComments);

			if (position <= token.SpanStart)
			{
				do
				{
					var skippedToken = findSkippedToken(token.LeadingTrivia, position);
					token = skippedToken.RawKind != 0
						? skippedToken
						: token.GetPreviousToken(includeZeroWidth: false, includeSkipped: includeSkipped, includeDirectives: includeDirectives, includeDocumentationComments: includeDocumentationComments);
				}
				while (position <= token.SpanStart && root.FullSpan.Start < token.SpanStart);
			}
			else if (token.Span.End < position)
			{
				var skippedToken = findSkippedToken(token.TrailingTrivia, position);
				token = skippedToken.RawKind != 0 ? skippedToken : token;
			}

			if (token.Span.Length == 0)
			{
				token = token.GetPreviousToken();
			}

			return token;
		}

		private static SyntaxToken GetInitialToken<TRoot>(
			SyntaxNode root,
			int position,
			bool includeSkipped = false,
			bool includeDirectives = false,
			bool includeDocumentationComments = false)
			where TRoot : SyntaxNode
		{
			var token = (position < root.FullSpan.End || !(root is TRoot))
				? root.FindToken(position, includeSkipped || includeDirectives || includeDocumentationComments)
				: root.GetLastToken(includeZeroWidth: true, includeSkipped: true, includeDirectives: true, includeDocumentationComments: true)
				.GetPreviousToken(includeZeroWidth: false, includeSkipped: includeSkipped, includeDirectives: includeDirectives, includeDocumentationComments: includeDocumentationComments);
			return token;
		}

		/// <summary>
		/// Look inside a trivia list for a skipped token that contains the given position.
		/// </summary>
		public static SyntaxToken FindSkippedTokenBackward(IEnumerable<SyntaxToken> skippedTokenList, int position)
		{
			// the given skipped token list is already in order
			var skippedTokenContainingPosition = skippedTokenList.LastOrDefault(skipped => skipped.Span.Length > 0 && skipped.SpanStart <= position);
			if (skippedTokenContainingPosition != default(SyntaxToken))
			{
				return skippedTokenContainingPosition;
			}

			return default(SyntaxToken);
		}

		/// <summary>
		/// Look inside a trivia list for a skipped token that contains the given position.
		/// </summary>
		public static SyntaxToken FindSkippedTokenForward(IEnumerable<SyntaxToken> skippedTokenList, int position)
		{
			// the given token list is already in order
			var skippedTokenContainingPosition = skippedTokenList.FirstOrDefault(skipped => skipped.Span.Length > 0 && position <= skipped.Span.End);
			if (skippedTokenContainingPosition != default(SyntaxToken))
			{
				return skippedTokenContainingPosition;
			}

			return default(SyntaxToken);
		}
	}
}