@@ -107,6 +107,60 @@ module FSharpTokenTag =
107107 val LBRACK_BAR : int
108108 /// Indicates the token is a `|]`
109109 val BAR_RBRACK : int
110+ /// Indicates the token is a `+` or `-`
111+ val PLUS_MINUS_OP : int
112+ /// Indicates the token is a `-`
113+ val MINUS : int
114+ /// Indicates the token is a `*`
115+ val STAR : int
116+ /// Indicates the token is a `%`
117+ val INFIX_STAR_DIV_MOD_OP : int
118+ /// Indicates the token is a `%`
119+ val PERCENT_OP : int
120+ /// Indicates the token is a `^`
121+ val INFIX_AT_HAT_OP : int
122+ /// Indicates the token is a `?`
123+ val QMARK : int
124+ /// Indicates the token is a `:`
125+ val COLON : int
126+ /// Indicates the token is a `=`
127+ val EQUALS : int
128+ /// Indicates the token is a `;`
129+ val SEMICOLON : int
130+ /// Indicates the token is a `,`
131+ val COMMA : int
132+ /// Indicates the token is a `.`
133+ val DOT : int
134+ /// Indicates the token is a `..`
135+ val DOT_DOT : int
136+ /// Indicates the token is a `..`
137+ val INT32_DOT_DOT : int
138+ /// Indicates the token is a `..`
139+ val UNDERSCORE : int
140+ /// Indicates the token is a `_`
141+ val BAR : int
142+ /// Indicates the token is a `:>`
143+ val COLON_GREATER : int
144+ /// Indicates the token is a `:?>`
145+ val COLON_QMARK_GREATER : int
146+ /// Indicates the token is a `:?`
147+ val COLON_QMARK : int
148+ /// Indicates the token is a `|`
149+ val INFIX_BAR_OP : int
150+ /// Indicates the token is a `|`
151+ val INFIX_COMPARE_OP : int
152+ /// Indicates the token is a `::`
153+ val COLON_COLON : int
154+ /// Indicates the token is a `@@`
155+ val AMP_AMP : int
156+ /// Indicates the token is a `~`
157+ val PREFIX_OP : int
158+ /// Indicates the token is a `:=`
159+ val COLON_EQUALS : int
160+ /// Indicates the token is a `||`
161+ val BAR_BAR : int
162+ /// Indicates the token is a `->`
163+ val RARROW : int
110164
111165/// Information about a particular token from the tokenizer
112166type FSharpTokenInfo =
0 commit comments