Skip to content

Commit 87798dc

Browse files
committed
Merge pull request #417 from vasily-kirichenko/add-quote-token-tag
add FSharpTokenTag.QUOTE
2 parents 7c22fba + 20857cf commit 87798dc

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/fsharp/vs/ServiceLexing.fs

+2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ module FSharpTokenTag =
6969
let COLON_EQUALS = tagOfToken COLON_EQUALS
7070
let BAR_BAR = tagOfToken BAR_BAR
7171
let RARROW = tagOfToken RARROW
72+
let QUOTE = tagOfToken QUOTE
73+
7274

7375
/// This corresponds to a token categorization originally used in Visual Studio 2003.
7476
///

src/fsharp/vs/ServiceLexing.fsi

+2
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,8 @@ module FSharpTokenTag =
161161
val BAR_BAR : int
162162
/// Indicates the token is a `->`
163163
val RARROW : int
164+
/// Indicates the token is a `"`
165+
val QUOTE : int
164166

165167
/// Information about a particular token from the tokenizer
166168
type FSharpTokenInfo =

0 commit comments

Comments
 (0)