Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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