We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7c22fba + 20857cf commit 87798dcCopy full SHA for 87798dc
src/fsharp/vs/ServiceLexing.fs
@@ -69,6 +69,8 @@ module FSharpTokenTag =
69
let COLON_EQUALS = tagOfToken COLON_EQUALS
70
let BAR_BAR = tagOfToken BAR_BAR
71
let RARROW = tagOfToken RARROW
72
+ let QUOTE = tagOfToken QUOTE
73
+
74
75
/// This corresponds to a token categorization originally used in Visual Studio 2003.
76
///
src/fsharp/vs/ServiceLexing.fsi
@@ -161,6 +161,8 @@ module FSharpTokenTag =
161
val BAR_BAR : int
162
/// Indicates the token is a `->`
163
val RARROW : int
164
+ /// Indicates the token is a `"`
165
+ val QUOTE : int
166
167
/// Information about a particular token from the tokenizer
168
type FSharpTokenInfo =
0 commit comments