Skip to content

Commit

Permalink
Merge pull request #417 from vasily-kirichenko/add-quote-token-tag
Browse files Browse the repository at this point in the history
add FSharpTokenTag.QUOTE
  • Loading branch information
dsyme committed Sep 7, 2015
2 parents 7c22fba + 20857cf commit 87798dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/fsharp/vs/ServiceLexing.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down
2 changes: 2 additions & 0 deletions src/fsharp/vs/ServiceLexing.fsi
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 87798dc

Please sign in to comment.