forked from dotnet/fsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceLexing.fsi
More file actions
executable file
·589 lines (481 loc) · 13.9 KB
/
Copy pathServiceLexing.fsi
File metadata and controls
executable file
·589 lines (481 loc) · 13.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
// Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information.
namespace FSharp.Compiler.Tokenization
open System
open System.Threading
open FSharp.Compiler
open FSharp.Compiler.Text
#nowarn "57"
/// Represents encoded information for the end-of-line continuation of lexing
[<Struct; CustomEquality; NoComparison>]
type FSharpTokenizerLexState =
{ PosBits: int64
OtherBits: int64 }
static member Initial: FSharpTokenizerLexState
member Equals: FSharpTokenizerLexState -> bool
/// Represents stable information for the state of the lexing engine at the end of a line
type FSharpTokenizerColorState =
| Token = 1
| IfDefSkip = 3
| String = 4
| Comment = 5
| StringInComment = 6
| VerbatimStringInComment = 7
| CamlOnly = 8
| VerbatimString = 9
| SingleLineComment = 10
| EndLineThenSkip = 11
| EndLineThenToken = 12
| TripleQuoteString = 13
| TripleQuoteStringInComment = 14
| InitialState = 0
/// Gives an indication of the color class to assign to the token an IDE
type FSharpTokenColorKind =
| Default = 0
| Text = 0
| Keyword = 1
| Comment = 2
| Identifier = 3
| String = 4
| UpperIdentifier = 5
| InactiveCode = 7
| PreprocessorKeyword = 8
| Number = 9
| Operator = 10
| Punctuation = 11
/// Gives an indication of what should happen when the token is typed in an IDE
type FSharpTokenTriggerClass =
| None = 0x00000000
| MemberSelect = 0x00000001
| MatchBraces = 0x00000002
| ChoiceSelect = 0x00000004
| MethodTip = 0x000000F0
| ParamStart = 0x00000010
| ParamNext = 0x00000020
| ParamEnd = 0x00000040
/// Gives an indication of the class to assign to the characters of the token an IDE
type FSharpTokenCharKind =
| Default = 0x00000000
| Text = 0x00000000
| Keyword = 0x00000001
| Identifier = 0x00000002
| String = 0x00000003
| Literal = 0x00000004
| Operator = 0x00000005
| Delimiter = 0x00000006
| WhiteSpace = 0x00000008
| LineComment = 0x00000009
| Comment = 0x0000000A
/// Some of the values in the field FSharpTokenInfo.Tag
module FSharpTokenTag =
/// Indicates the token is an identifier
val Identifier: int
/// Indicates the token is a string
val String: int
/// Indicates the token is an identifier (synonym for FSharpTokenTag.Identifier)
val IDENT: int
/// Indicates the token is a string (synonym for FSharpTokenTag.String)
val STRING: int
/// Indicates the token is a part of an interpolated string
val INTERP_STRING_BEGIN_END: int
/// Indicates the token is a part of an interpolated string
val INTERP_STRING_BEGIN_PART: int
/// Indicates the token is a part of an interpolated string
val INTERP_STRING_PART: int
/// Indicates the token is a part of an interpolated string
val INTERP_STRING_END: int
/// Indicates the token is a `(`
val LPAREN: int
/// Indicates the token is a `)`
val RPAREN: int
/// Indicates the token is a `[`
val LBRACK: int
/// Indicates the token is a `]`
val RBRACK: int
/// Indicates the token is a `{`
val LBRACE: int
/// Indicates the token is a `}`
val RBRACE: int
/// Indicates the token is a `[<`
val LBRACK_LESS: int
/// Indicates the token is a `>]`
val GREATER_RBRACK: int
/// Indicates the token is a `<`
val LESS: int
/// Indicates the token is a `>`
val GREATER: int
/// Indicates the token is a `[|`
val LBRACK_BAR: int
/// Indicates the token is a `|]`
val BAR_RBRACK: int
/// Indicates the token is a `+` or `-`
val PLUS_MINUS_OP: int
/// Indicates the token is a `-`
val MINUS: int
/// Indicates the token is a `*`
val STAR: int
/// Indicates the token is a `%`
val INFIX_STAR_DIV_MOD_OP: int
/// Indicates the token is a `%`
val PERCENT_OP: int
/// Indicates the token is a `^`
val INFIX_AT_HAT_OP: int
/// Indicates the token is a `?`
val QMARK: int
/// Indicates the token is a `:`
val COLON: int
/// Indicates the token is a `=`
val EQUALS: int
/// Indicates the token is a `;`
val SEMICOLON: int
/// Indicates the token is a `,`
val COMMA: int
/// Indicates the token is a `.`
val DOT: int
/// Indicates the token is a `..`
val DOT_DOT: int
/// Indicates the token is a `..`
val DOT_DOT_HAT: int
/// Indicates the token is a `..^`
val INT32_DOT_DOT: int
/// Indicates the token is a `..`
val UNDERSCORE: int
/// Indicates the token is a `_`
val BAR: int
/// Indicates the token is a `:>`
val COLON_GREATER: int
/// Indicates the token is a `:?>`
val COLON_QMARK_GREATER: int
/// Indicates the token is a `:?`
val COLON_QMARK: int
/// Indicates the token is a `|`
val INFIX_BAR_OP: int
/// Indicates the token is a `|`
val INFIX_COMPARE_OP: int
/// Indicates the token is a `::`
val COLON_COLON: int
/// Indicates the token is a `@@`
val AMP_AMP: int
/// Indicates the token is a `~`
val PREFIX_OP: int
/// Indicates the token is a `:=`
val COLON_EQUALS: int
/// Indicates the token is a `||`
val BAR_BAR: int
/// Indicates the token is a `->`
val RARROW: int
/// Indicates the token is a `<-`
val LARROW: int
/// Indicates the token is a `"`
val QUOTE: int
/// Indicates the token is a whitespace
val WHITESPACE: int
/// Indicates the token is a comment
val COMMENT: int
/// Indicates the token is a line comment
val LINE_COMMENT: int
/// Indicates the token is keyword `begin`
val BEGIN: int
/// Indicates the token is keyword `do`
val DO: int
/// Indicates the token is keyword `function`
val FUNCTION: int
/// Indicates the token is keyword `then`
val THEN: int
/// Indicates the token is keyword `else`
val ELSE: int
/// Indicates the token is keyword `struct`
val STRUCT: int
/// Indicates the token is keyword `class`
val CLASS: int
/// Indicates the token is keyword `try`
val TRY: int
/// Indicates the token is keyword `with`
val WITH: int
/// Indicates the token is keyword `with` in #light
val OWITH: int
/// Indicates the token is keyword `new`
val NEW: int
/// Information about a particular token from the tokenizer
type FSharpTokenInfo =
{
/// Left column of the token.
LeftColumn: int
/// Right column of the token.
RightColumn: int
ColorClass: FSharpTokenColorKind
/// Gives an indication of the class to assign to the token an IDE
CharClass: FSharpTokenCharKind
/// Actions taken when the token is typed
FSharpTokenTriggerClass: FSharpTokenTriggerClass
/// The tag is an integer identifier for the token
Tag: int
/// Provides additional information about the token
TokenName: string
/// The full length consumed by this match, including delayed tokens (which can be ignored in naive lexers)
FullMatchedLength: int
}
/// Object to tokenize a line of F# source code, starting with the given lexState. The lexState should be FSharpTokenizerLexState.Initial for
/// the first line of text. Returns an array of ranges of the text and two enumerations categorizing the
/// tokens and characters covered by that range, i.e. FSharpTokenColorKind and FSharpTokenCharKind. The enumerations
/// are somewhat adhoc but useful enough to give good colorization options to the user in an IDE.
///
/// A new lexState is also returned. An IDE-plugin should in general cache the lexState
/// values for each line of the edited code.
[<Sealed>]
type FSharpLineTokenizer =
/// Scan one token from the line
member ScanToken: lexState: FSharpTokenizerLexState -> FSharpTokenInfo option * FSharpTokenizerLexState
/// Get the color state from the lexer state
static member ColorStateOfLexState: FSharpTokenizerLexState -> FSharpTokenizerColorState
/// Get a default lexer state for a color state.
///
/// NOTE: This may result in an inaccurate lexer state
/// not taking into account things such as the #if/#endif and string interpolation context
/// within the file
static member LexStateOfColorState: FSharpTokenizerColorState -> FSharpTokenizerLexState
/// Tokenizer for a source file. Holds some expensive-to-compute resources at the scope of the file.
[<Sealed>]
type FSharpSourceTokenizer =
/// Create a tokenizer for a source file.
new: conditionalDefines: string list * fileName: string option -> FSharpSourceTokenizer
/// Create a tokenizer for a line of this source file
member CreateLineTokenizer: lineText: string -> FSharpLineTokenizer
/// Create a tokenizer for a line of this source file using a buffer filler
member CreateBufferTokenizer: bufferFiller: (char[] * int * int -> int) -> FSharpLineTokenizer
module internal TestExpose =
val TokenInfo: Parser.token -> FSharpTokenColorKind * FSharpTokenCharKind * FSharpTokenTriggerClass
module FSharpKeywords =
/// Add backticks if the identifier is a keyword.
/// Remove backticks if present and not needed.
val NormalizeIdentifierBackticks: string -> string
/// Keywords paired with their descriptions. Used in completion and quick info.
val KeywordsWithDescription: (string * string) list
/// A lookup from keywords to their descriptions
val internal KeywordsDescriptionLookup: (string -> string option)
/// All the keywords in the F# language
val KeywordNames: string list
[<Flags; Experimental("This FCS API is experimental and subject to change.")>]
type public FSharpLexerFlags =
| Default = 0x11011
| LightSyntaxOn = 0x00001
| Compiling = 0x00010
| CompilingFSharpCore = 0x00110
| SkipTrivia = 0x01000
| UseLexFilter = 0x10000
[<RequireQualifiedAccess; Experimental("This FCS API is experimental and subject to change.")>]
type public FSharpTokenKind =
| None
| HashIf
| HashElse
| HashEndIf
| CommentTrivia
| WhitespaceTrivia
| HashLine
| HashLight
| InactiveCode
| LineCommentTrivia
| StringText
| Fixed
| OffsideInterfaceMember
| OffsideBlockEnd
| OffsideRightBlockEnd
| OffsideDeclEnd
| OffsideEnd
| OffsideBlockSep
| OffsideBlockBegin
| OffsideReset
| OffsideFun
| OffsideFunction
| OffsideWith
| OffsideElse
| OffsideThen
| OffsideDoBang
| OffsideDo
| OffsideBinder
| OffsideLet
| HighPrecedenceTypeApp
| HighPrecedenceParenthesisApp
| HighPrecedenceBracketApp
| Extern
| Void
| Public
| Private
| Internal
| Global
| Static
| Member
| Class
| Abstract
| Override
| Default
| Constructor
| Inherit
| GreaterRightBracket
| Struct
| Sig
| Bar
| RightBracket
| RightBrace
| Minus
| Dollar
| BarRightBracket
| BarRightBrace
| Underscore
| Semicolon
| SemicolonSemicolon
| LeftArrow
| Equals
| LeftBracket
| LeftBracketBar
| LeftBraceBar
| LeftBracketLess
| LeftBrace
| QuestionMark
| QuestionMarkQuestionMark
| Dot
| Colon
| ColonColon
| ColonGreater
| ColonQuestionMark
| ColonQuestionMarkGreater
| ColonEquals
| When
| While
| WhileBang
| With
| Hash
| Ampersand
| AmpersandAmpersand
| Quote
| LeftParenthesis
| RightParenthesis
| Star
| Comma
| RightArrow
| GreaterBarRightBracket
| LeftParenthesisStarRightParenthesis
| Open
| Or
| Rec
| Then
| To
| True
| Try
| Type
| Val
| Inline
| Interface
| Instance
| Const
| Lazy
| OffsideLazy
| Match
| MatchBang
| Mutable
| New
| Of
| Exception
| False
| For
| Fun
| Function
| If
| In
| JoinIn
| Finally
| DoBang
| And
| As
| Assert
| OffsideAssert
| Begin
| Do
| Done
| DownTo
| Else
| Elif
| End
| DotDot
| DotDotHat
| BarBar
| Upcast
| Downcast
| Null
| Reserved
| Module
| Namespace
| Delegate
| Constraint
| Base
| LeftQuote
| RightQuote
| RightQuoteDot
| PercentOperator
| Binder
| Less
| Greater
| Let
| Yield
| YieldBang
| BigNumber
| Decimal
| Char
| Ieee64
| Ieee32
| NativeInt
| UNativeInt
| UInt64
| UInt32
| UInt16
| UInt8
| Int64
| Int32
| Int32DotDot
| Int16
| Int8
| FunkyOperatorName
| AdjacentPrefixOperator
| PlusMinusOperator
| InfixAmpersandOperator
| InfixStarDivideModuloOperator
| PrefixOperator
| InfixBarOperator
| InfixAtHatOperator
| InfixCompareOperator
| InfixStarStarOperator
| Identifier
| KeywordString
| String
| ByteArray
| Asr
| InfixAsr
| InfixLand
| InfixLor
| InfixLsl
| InfixLsr
| InfixLxor
| InfixMod
[<Struct; NoComparison; NoEquality; Experimental("This FCS API is experimental and subject to change.")>]
type public FSharpToken =
val private tok: Parser.token
val private tokRange: range
member Range: range
member Kind: FSharpTokenKind
member IsIdentifier: bool
member IsKeyword: bool
member IsStringLiteral: bool
member IsNumericLiteral: bool
member IsCommentTrivia: bool
[<AbstractClass; Sealed; Experimental("This FCS API is experimental and subject to change.")>]
type public FSharpLexer =
[<Experimental("This FCS API is experimental and subject to change.")>]
static member Tokenize:
text: ISourceText *
tokenCallback: (FSharpToken -> unit) *
?langVersion: string *
?filePath: string *
?conditionalDefines: string list *
?flags: FSharpLexerFlags *
?pathMap: Map<string, string> *
?ct: CancellationToken ->
unit