TokenSpan Type
A token in a parsed F# code snippet. Aside from standard tokens reported from the compiler (Token), this also includes Error (wrapping the underlined tokens), Omitted for the special [omit:...] tags and Output for the special [output:...] tag
Union cases
Union case |
Description
|
Full Usage:
Error(kind, message, body)
Parameters:
ErrorKind
message : string
body : TokenSpans
|
|
Full Usage:
Omitted(body, hidden)
Parameters:
string
hidden : string
|
|
Full Usage:
Output string
Parameters:
string
|
|
Full Usage:
Token(kind, body, tip)
Parameters:
TokenKind
body : string
tip : ToolTipSpans option
|
|