-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathspec.emu.html
762 lines (584 loc) · 18.2 KB
/
spec.emu.html
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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
<pre class="metadata">
copyright: false
</pre>
<emu-intro id="intro">
<h1>Introduction</h1>
<p>This document will eventually have a full specification for TypeSpec. For now, it just has the grammar below.</p>
</emu-intro>
<emu-clause id="lexical-grammar">
<h1>Lexical Grammar</h1>
<emu-grammar type="definition">
<![CDATA[
// TODO: Incorporate remarks in comments below into the eventual specification text.
SourceCharacter :
> any Unicode code point
InputElement :
Token
Trivia
Token :
Keyword
Identifier
NumericLiteral
StringLiteral
Punctuator
Trivia :
Comment
WhiteSpace
Keyword :
BooleanLiteral
`import`
`model`
`namespace`
`op`
`extends`
`using`
`interface`
`union`
`extern`
`dec`
`fn`
`projection`
`void`
`never`
`unknown`
Identifier :
IdentifierName but not Keyword
``` BacktickedIdentifierChars ```
IdentifierName :
IdentifierStart
IdentifierName IdentifierContinue
IdentifierStart :
IdentifierContinue but not DecimalDigit
///
// This is a profile of UAX31.R2 Immutable Identifiers:
// http://www.unicode.org/reports/tr31/#R2
//
// The profile adds Pattern_Syntax code points outside the ASCII range, and
// removes unassigned code points and 0xFFD (REPLACEMENT CHARACTER).
//
// Unassigned code points are removed to ensure identifier normalization remains
// stable across versions of Unicode.
//
// Non-ASCII Pattern_Syntax characters are added as reserving ASCII characters
// for future punctuation in the language is sufficient and users may wish to
// use some of the Non-ASCII Pattern_Syntax characters in identifiers.
//
// 0xFFFD (REPLACEMENT CHARACTER) is removed to prevent its inadvertent
// substitution from becoming part of a valid identifier.
///
IdentifierContinue :
AsciiLetter
DecimalDigit
`$`
`_`
> any assigned Unicode code point other than U+FFFD greater than U+007F that does not have any of the following property values: General_Category=Surrogate, Control or Private_Use, Noncharacter_Code_Point=True, or Pattern_White_Space=True
BacktickedIdentifierChars:
BacktickedIdentifierChar BacktickedIdentifierChars?
BacktickedIdentifierChar :
SourceCharacter but not one of ``` or `\` or LineTerminator
`\` EscapeCharacter
AsciiLetter : one of
`A` `B` `C` `D` `E` `F` `G` `H` `I` `J` `K` `L` `M` `N` `O` `P` `Q` `R` `S` `T` `U` `V` `W` `X` `Y` `Z`
`a` `b` `c` `d` `e` `f` `g` `h` `i` `j` `k` `l` `m` `n` `o` `p` `q` `r` `s` `t` `u` `v` `w` `x` `y` `z`
BooleanLiteral :
`true`
`false`
NumericLiteral :
DecimalLiteral
HexIntegerLiteral
BinaryIntegerLiteral
DecimalLiteral :
DecimalIntegerLiteral `.` DecimalDigits ExponentPart?
DecimalIntegerLiteral ExponentPart?
DecimalIntegerLiteral :
DecimalDigits
`+` DecimalDigits
`-` DecimalDigits
DecimalDigits :
DecimalDigit
DecimalDigits DecimalDigit
DecimalDigit : one of
`0` `1` `2` `3` `4` `5` `6` `7` `8` `9`
ExponentPart :
`e` DecimalIntegerLiteral
DecimalIntegerInteger :
DecimalDigits
`+` DecimalDigits
`-` DecimalDigits
HexIntegerLiteral :
`0x` HexDigits
HexDigits :
HexDigit
HexDigits HexDigit
HexDigit : one of
`0` `1` `2` `3` `4` `5` `6` `7` `8` `9`
`A` `B` `C` `D` `E` `F`
`a` `b` `c` `d` `e` `f`
BinaryIntegerLiteral :
`0b` BinaryDigits
BinaryDigits :
BinaryDigit
BinaryDigits BinaryDigit
BinaryDigit : one of
`0` `1`
StringLiteral :
`"` StringCharacters? `"`
`"""` TripleQuotedStringCharacters? `"""`
StringTemplate
StringTemplate :
TemplateHead Expression TemplateSpans
TemplateSpans :
TemplateTail
TemplateMiddleList TemplateTail
TemplateMiddleList :
StringTemplateMiddle Expression
StringTemplateMiddle Expression TemplateMiddleList
StringTemplateHead :
`"` StringCharacters? `${`
`"""` TripleQuotedStringCharacters? `${`
StringTemplateMiddle :
`}` TemplateCharacters? `${`
StringTemplateTail :
`}` TemplateCharacters? `"`
`}` TemplateCharacters? `"""`
StringCharacters :
StringCharacter StringCharacters?
StringCharacter :
`$` [lookahead != `{`]
SourceCharacter but not one of `"` or `\` or LineTerminator
`\` EscapeCharacter
///
// BUG: This does not specify the extra rules about `"""`s going
// on their own lines and having consistent indentation.
//
// BUG: This does not allow `"` inside of `"""`s as it should.
///
TripleQuotedStringCharacters :
TripleQuotedStringCharacter TripleQuotedStringCharacters?
TripleQuotedStringCharacter :
SourceCharacter but not one of `"` or `\`
`\` EscapeCharacter
EscapeCharacter : one of
`"` `r` `n` `t` `\` ```
Punctuator : one of
`|` `?` `=` `&` `:` `,` `;` `.` `<` `>` `(` `)` `{` `}` `[` `]` `@` `...` `#`
///
// Note that whitespace could also be specified equivalently as "Any Unicode
// code point with property value Pattern_White_Space=True"
//
// However, see http://www.unicode.org/reports/tr31/#Stability
//
// "The [...] Pattern_White_Space characters are immutable and will not
// change over successive versions of Unicode". This is therefore a fixed set
// of characters, which are simply listed below to serve as a more direct
// reference:
//
// - U+0009 TAB HORIZONTAL TAB
// - U+000A LF LINE FEED
// - U+000B VT VERTICAL TAB
// - U+000C FF FORM FEED
// - U+000D CR CARRIAGE RETURN
// - U+0020 SP SPACE
// - U+0085 NEL NEXT LINE
// - U+200E LRM LEFT-TO-RIGHT MARK
// - U+200F RLM RIGHT-TO-LEFT MARK
// - U+2028 LS LINE SEPARATOR
// - U+2029 PS PARAGRAPH SEPARATOR
//
// It is deliberately left unspecified which whitespace sequences are
// considered newlines as no language semantics are impacted by that choice.
// Only line and column numbers associated with diagnostics are impacted. In
// practice, only CR ("MAC"), LF ("UNIX"), and CRLF ("DOS") line endings are
// currently recognized by our implementation. Additional line endings may be
// recognized in the future.
///
WhiteSpace :
<TAB>
<LF>
<VT>
<FF>
<CR>
<SP>
<NEL>
<LRM>
<RLM>
<LS>
<PS>
Comment :
MultiLineComment
SingleLineComment
MultiLineComment :
`/*` MultiLineCommentChars? `*/`
MultiLineCommentChars :
MultiLineNotAsteriskChar MultiLineCommentChars?
`*` PostAsteriskCommentChars?
PostAsteriskCommentChars :
MultiLineNotForwardSlashOrAsteriskChar MultiLineCommentChars?
`*` PostAsteriskCommentChars?
MultiLineNotAsteriskChar :
SourceCharacter but not `*`
MultiLineNotForwardSlashOrAsteriskChar :
SourceCharacter but not one of `/` or `*`
SingleLineComment :
`//` SingleLineCommentChars?
SingleLineCommentChars :
SingleLineCommentChar SingleLineCommentChars?
SingleLineCommentChar :
SourceCharacter but not LineTerminator
]]>
</emu-grammar>
</emu-clause>
<emu-clause id="syntactic-grammar">
<h1>Syntactic Grammar</h1>
<emu-grammar type="definition">
<![CDATA[
TypeSpecScript :
TypeSpecScriptItemList?
TypeSpecScriptItemList :
TypeSpecScriptItemList? TypeSpecScriptItem
TypeSpecScriptItem :
BlocklessNamespaceStatement
ImportStatement
Statement
BlocklessNamespaceStatement :
DecoratorList? `namespace` IdentifierOrMemberExpression `;`
ImportStatement :
`import` StringLiteral `;`
StatementList :
StatementList? Statement
Statement :
ModelStatement
ScalarStatement
InterfaceStatement
NamespaceStatement
OperationStatement
UsingStatement
EnumStatement
AliasStatement
AugmentDecoratorStatement
DecoratorDeclarationStatement
FunctionDeclarationStatement
`;`
UsingStatement :
`using` IdentifierOrMemberExpression `;`
ModelStatement :
DecoratorList? `model` Identifier TemplateParameters? IsModelHeritage `;`
DecoratorList? `model` Identifier TemplateParameters? ModelHeritage? `{` ModelBody? `}`
IsModelHeritage :
`is` Expression
ScalarStatement :
DecoratorList? `scalar` Identifier TemplateParameters? ScalarExtends? `;`
DecoratorList? `scalar` Identifier TemplateParameters? ScalarExtends? `{` ScalarBody? `}`
ScalarExtends :
`extends` Expression
ScalarBody :
ScalarMemberList `;`?
ScalarMemberList :
ScalarMember
ScalarMemberList `;` ScalarMember
ScalarMember:
`init` Identifier `(` FunctionParameterList? `)`
ExtendsModelHeritage :
`extends` Expression
ModelHeritage :
IsModelHeritage
ExtendsModelHeritage
ModelBody :
ModelPropertyList `,`?
ModelPropertyList `;`?
ModelPropertyList :
ModelProperty
ModelPropertyList `,` ModelProperty
ModelPropertyList `;` ModelProperty
ModelProperty :
ModelSpreadProperty
DecoratorList? Identifier `?`? `:` Expression
DecoratorList? StringLiteral `?`? `:` Expression
ModelSpreadProperty :
`...` ReferenceExpression
InterfaceStatement :
`interface` Identifier TemplateParameters? InterfaceHeritage? `{` InterfaceBody? `}`
InterfaceHeritage :
`extends` ReferenceExpressionList;
InterfaceBody
InterfaceMemberList `;`?
InterfaceMemberList :
InterfaceMember
InterfaceMemberList `;` InterfaceMember
InterfaceMember :
`op`? Identifier OperationSignature
UnionStatement :
DecoratorList? `union` Identifier TemplateParameters? `{` UnionBody? `}`
UnionBody :
UnionVariantList `;`?
UnionVariantList :
UnionVariant
UnionVariantList `;` UnionVariant
UnionVariant :
DecoratorList? Identifier `:` Expression
DecoratorList? StringLiteral `:` Expression
DecoratorList? Expression
EnumStatement :
DecoratorList? `enum` Identifier `{` EnumBody? `}`
EnumBody :
EnumMemberList `,`?
EnumMemberList `;`?
EnumMemberList :
EnumMember
EnumMemberList `,` EnumMember
EnumMemberList `;` EnumMember
EnumMember :
EnumSpreadMember
DecoratorList? Identifier EnumMemberValue?
DecoratorList? StringLiteral EnumMemberValue?
EnumSpreadMember :
`...` ReferenceExpression
EnumMemberValue :
`:` StringLiteral
`:` NumericLiteral
AliasStatement :
`alias` Identifier TemplateParameters? `=` Expression;
TemplateParameters :
`<` TemplateParameterList `>`
TemplateParameterList :
TemplateParameter
TemplateParameterList `,` TemplateParameter
TemplateParameter :
Identifier TemplateParameterConstraint? TemplateParameterDefault?
TemplateParameterConstraint :
`extends` MixedParameterConstraint
MixedParameterConstraint :
UnionExpressionOrHigher[+InParameter]
valueof UnionExpressionOrHigher
TemplateParameterDefault :
`=` Expression
IdentifierList :
Identifier
IdentifierList `,` Identifier
NamespaceStatement :
DecoratorList? `namespace` IdentifierOrMemberExpression `{` StatementList? `}`
OperationSignatureDeclaration :
`(` ModelPropertyList? `)` `:` Expression
OperationSignatureReference :
`is` ReferenceExpression
OperationSignature :
OperationSignatureDeclaration
OperationSignatureReference
OperationStatement :
DecoratorList? `op` Identifier TemplateParameters? OperationSignature `;`
Expression :
UnionExpressionOrHigher
UnionExpressionOrHigher[InParameter] :
IntersectionExpressionOrHigher[?InParameter]
`|`? UnionExpressionOrHigher[?InParameter] `|` IntersectionExpressionOrHigher[?InParameter]
IntersectionExpressionOrHigher[InParameter] :
ArrayExpressionOrHigher[?InParameter]
`&`? IntersectionExpressionOrHigher[?InParameter] `&` ArrayExpressionOrHigher[?InParameter]
ValueOfExpression :
`valueof` Expression
TypeOfExpression :
`typeof` Literal
`typeof` ReferenceExpression
`typeof` ParenthesizedExpression
ArrayExpressionOrHigher[InParameter] :
PrimaryExpression[?InParameter]
ArrayExpressionOrHigher[?InParameter] `[` `]`
PrimaryExpression[InParameter] :
TypeOfExpression
Literal
CallOrReferenceExpression
ParenthesizedExpression[?InParameter]
ObjectLiteral
ArrayLiteral
ModelExpression
TupleExpression
Literal :
StringLiteral
BooleanLiteral
NumericLiteral
CallOrReferenceExpression :
CallExpression
ReferenceExpression
CallExpression
IdentifierOrMemberExpression CallArguments
ReferenceExpression
IdentifierOrMemberExpression TemplateArguments?
ReferenceExpressionList :
ReferenceExpression
ReferenceExpressionList `,` ReferenceExpression
IdentifierOrMemberExpression :
Identifier
IdentifierOrMemberExpression `.` Identifier
TemplateArguments :
`<` ExpressionList `>`
ProjectionArguments :
`(` ExpressionList? `)`
ParenthesizedExpression[InParameter] :
[~InParameter] `(` Expression `)`
[+InParameter] `(` MixedParameterConstraint `)`
ObjectLiteral :
`#{` ObjectLiteralBody? `}`
ObjectLiteralBody :
ModelPropertyList `,`?
ObjectLiteralPropertyList :
ObjectLiteralProperty
ObjectLiteralPropertyList `,` ObjectLiteralProperty
ObjectLiteralProperty :
ObjectLiteralSpreadProperty
Identifier `:` Expression
ObjectLiteralSpreadProperty :
`...` ReferenceExpression
ArrayLiteral :
`#[` ExpressionList? `]`
ModelExpression :
`{` ModelBody? `}`
TupleExpression :
`[` ExpressionList? `]`
ExpressionList :
Expression
ExpressionList `,` Expression
DecoratorList :
DecoratorList? Decorator
Decorator :
`@` IdentifierOrMemberExpression DecoratorArguments?
DecoratorArguments :
`(` ExpressionList? `)`
CallExpression :
IdentifierOrMemberExpression `(` ExpressionList? `)`
AugmentDecoratorStatement :
`@@` IdentifierOrMemberExpression DecoratorArguments?
AugmentDecoratorArguments :
`(` ExpressionList `)`
DecoratorDeclarationStatement :
DecoratorModifiers? `dec` `(` FunctionParameterList? `)`
DecoratorModifiers:
`extern`
FunctionDeclarationStatement :
FunctionModifiers? `fn` `(` FunctionParameterList? `)` TypeAnnotation?
TypeAnnotation:
`:` MixedParameterConstraint
FunctionModifiers:
`extern`
FunctionParameterList :
FunctionParameter
FunctionParameterList `,` FunctionParameter
FunctionParameter :
`...`? Identifier `?`? TypeAnnotation?
ProjectionStatement :
`projection` ProjectionSelector ProjectionDirection ProjectionTag ProjectionParameters? `{` ProjectionBody `}`
ProjectionSelector :
`model`
`interface`
`op`
`union`
`modelproperty`
`enummember`
`unionvariant`
ReferenceExpression
ProjectionDirection :
`pre`? `to`
`pre`? `from`
ProjectionTag :
`#` Identifier
ProjectionParameters :
`(` IdentifierList? `)`
ProjectionBody :
ProjectionStatementList
ProjectionStatementList :
ProjectionStatementItem
ProjectionStatementList `;` ProjectionStatementItem
ProjectionStatementItem :
ProjectionExpressionStatement
ProjectionExpression :
ProjectionReturnExpression
ProjectionReturnExpression :
ProjectionLogicalOrExpression
`return` ProjectionExpression
ProjectionLogicalOrExpression :
ProjectionLogicalAndExpression
ProjectionLogicalOrExpression `||` ProjectionLogicalAndExpression
ProjectionLogicalAndExpression :
ProjectionEqualityExpression
ProjectionLogicalAndExpression `&&` ProjectionEqualityExpression
ProjectionEqualityExpression :
ProjectionRelationalExpression
ProjectionEqualityExpression `==` ProjectionRelationalExpression
ProjectionEqualityExpression `!=` ProjectionRelationalExpression
ProjectionRelationalExpression :
ProjectionAdditiveExpression
ProjectionRelationalExpression `<` ProjectionAdditiveExpression
ProjectionRelationalExpression `>` ProjectionAdditiveExpression
ProjectionRelationalExpression `<=` ProjectionAdditiveExpression
ProjectionRelationalExpression `>=` ProjectionAdditiveExpression
ProjectionAdditiveExpression :
ProjectionMultiplicativeExpression
ProjectionAdditiveExpression `+` ProjectionMultiplicativeExpression
ProjectionAdditiveExpression `-` ProjectionMultiplicativeExpression
ProjectionMultiplicativeExpression :
ProjectionUnaryExpression
ProjectionMultiplicativeExpression `*` ProjectionUnaryExpression
ProjectionMultiplicativeExpression `/` ProjectionUnaryExpression
ProjectionUnaryExpression :
ProjectionCallExpression
`!` ProjectionUnaryExpression
ProjectionCallExpression :
ProjectionDecoratorReferenceExpression
ProjectionCallExpression ProjectionCallArguments
ProjectionCallExpression `.` Identifier
ProjectionCallExpression `::` Identifier
ProjectionCallArguments :
`(` ProjectionExpressionList? `)`
ProjectionDecoratorReferenceExpression :
ProjectionMemberExpression
`@` IdentifierOrMemberExpression
ProjectionMemberExpression :
ProjectionPrimaryExpression
ProjectionMemberExpression `.` Identifier
ProjectionMemberExpression `::` Identifier
ProjectionPrimaryExpression :
`self`
Identifier
ProjectionIfExpression
ProjectionLambdaExpression
Literal
ProjectionModelExpression
ProjectionTupleExpression
CoverProjectionParenthesizedExpressionAndLambdaParameterList
CoverProjectionParenthesizedExpressionAndLambdaParameterList:
`(` ProjectionExpressionList `)`
ProjectionExpressionList :
ProjectionExpression
ProjectionExpressionList `,` ProjectionExpression
ProjectionIfExpression :
`if` ProjectionExpression BlockExpression
`if` ProjectionExpression BlockExpression `else` ProjectionBlockExpression
`if` ProjectionExpression BlockExpression `else` ProjectionIfExpression
ProjectionModelExpression :
`{` ProjectionModelBody? `}`
ProjectionModelBody :
ProjectionModelPropertyList `,`?
ProjectionModelPropertyList `;`?
ProjectionModelPropertyList :
ProjectionModelProperty
ProjectionModelPropertyList `,` ProjectionModelProperty
ProjectionModelPropertyList `;` ProjectionModelProperty
ProjectionModelProperty :
ProjectionModelSpreadProperty
DecoratorList? Identifier `?`? `:` ProjectionExpression
DecoratorList? StringLiteral `?`? `:` ProjectionExpression
ProjectionModelSpreadProperty :
`...` ProjectionExpression
ProjectionTupleExpression :
`[` ProjectionExpressionList? `]`
ProjectionLambdaExpression :
CoverProjectionParenthesizedExpressionAndLambdaParameterList `=>` ProjectionBlockExpression
ProjectionBlockExpression :
`{` ProjectionExpressionList `}`
// When processing the production
// ProjectionLambdaExpression : CoverProjectionParenthesizedExpressionAndLambdaParameterList
// the interpretation is refined using the following grammar:
LambdaParameters :
`(` IdentifierList? `)`
]]>
</emu-grammar>
</emu-clause>