From 20857cfc024a886be6e8c538ce2648570f95ef7a Mon Sep 17 00:00:00 2001 From: Vasily Kirichenko Date: Mon, 7 Sep 2015 20:14:34 +0300 Subject: [PATCH] add FSharpTokenTag.QUOTE --- src/fsharp/vs/ServiceLexing.fs | 2 ++ src/fsharp/vs/ServiceLexing.fsi | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/fsharp/vs/ServiceLexing.fs b/src/fsharp/vs/ServiceLexing.fs index 50c8191591..1e300e122e 100755 --- a/src/fsharp/vs/ServiceLexing.fs +++ b/src/fsharp/vs/ServiceLexing.fs @@ -69,6 +69,8 @@ module FSharpTokenTag = let COLON_EQUALS = tagOfToken COLON_EQUALS let BAR_BAR = tagOfToken BAR_BAR let RARROW = tagOfToken RARROW + let QUOTE = tagOfToken QUOTE + /// This corresponds to a token categorization originally used in Visual Studio 2003. /// diff --git a/src/fsharp/vs/ServiceLexing.fsi b/src/fsharp/vs/ServiceLexing.fsi index 9f69311048..078abdf338 100755 --- a/src/fsharp/vs/ServiceLexing.fsi +++ b/src/fsharp/vs/ServiceLexing.fsi @@ -161,6 +161,8 @@ module FSharpTokenTag = val BAR_BAR : int /// Indicates the token is a `->` val RARROW : int + /// Indicates the token is a `"` + val QUOTE : int /// Information about a particular token from the tokenizer type FSharpTokenInfo =