-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathParsers.scala
4821 lines (4394 loc) · 188 KB
/
Parsers.scala
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
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package dotty.tools
package dotc
package parsing
import scala.language.unsafeNulls
import scala.annotation.internal.sharable
import scala.collection.mutable.ListBuffer
import scala.collection.immutable.BitSet
import util.{ SourceFile, SourcePosition, NoSourcePosition }
import Tokens.*
import Scanners.*
import xml.MarkupParsers.MarkupParser
import core.*
import Flags.*
import Contexts.*
import Names.*
import NameKinds.{WildcardParamName, QualifiedName}
import NameOps.*
import ast.{Positioned, Trees}
import ast.Trees.*
import StdNames.*
import util.Spans.*
import Constants.*
import Symbols.NoSymbol
import ScriptParsers.*
import Decorators.*
import util.Chars
import scala.annotation.tailrec
import rewrites.Rewrites.{overlapsPatch, patch, unpatch}
import reporting.*
import config.Feature
import config.Feature.{sourceVersion, migrateTo3}
import config.SourceVersion.*
import config.SourceVersion
import dotty.tools.dotc.config.MigrationVersion
object Parsers {
import ast.untpd.*
case class OpInfo(operand: Tree, operator: Ident, offset: Offset)
enum Location(val inParens: Boolean, val inPattern: Boolean, val inArgs: Boolean):
case InParens extends Location(true, false, false)
case InArgs extends Location(true, false, true)
case InColonArg extends Location(false, false, true)
case InPattern extends Location(false, true, false)
case InGuard extends Location(false, false, false)
case InPatternArgs extends Location(false, true, true) // InParens not true, since it might be an alternative
case InBlock extends Location(false, false, false)
case ElseWhere extends Location(false, false, false)
enum ParamOwner:
case Class // class or trait or enum
case CaseClass // case class or enum case
case Def // method
case Type // type alias or abstract type or polyfunction type/expr
case Hk // type parameter (i.e. current parameter is higher-kinded)
case Given // given definition
case ExtensionPrefix // extension clause, up to and including extension parameter
case ExtensionFollow // extension clause, following extension parameter
def isClass = // owner is a class
this == Class || this == CaseClass || this == Given
def takesOnlyUsingClauses = // only using clauses allowed for this owner
this == Given || this == ExtensionFollow
def acceptsVariance =
this == Class || this == CaseClass || this == Hk
def acceptsCtxBounds =
!(this == Type || this == Hk)
def acceptsWildcard =
this == Type || this == Hk
end ParamOwner
enum ParseKind:
case Expr, Type, Pattern
enum IntoOK:
case Yes, No, Nested
type StageKind = Int
object StageKind {
val None = 0
val Quoted = 1
val Spliced = 1 << 1
val QuotedPattern = 1 << 2
}
extension (buf: ListBuffer[Tree])
def +++=(x: Tree) = x match {
case x: Thicket => buf ++= x.trees
case x => buf += x
}
/** The parse starting point depends on whether the source file is self-contained:
* if not, the AST will be supplemented.
*/
def parser(source: SourceFile)(using Context): Parser =
if source.isSelfContained then new ScriptParser(source)
else new Parser(source)
private val InCase: Region => Region = Scanners.InCase(_)
private val InCond: Region => Region = Scanners.InParens(LPAREN, _)
private val InFor : Region => Region = Scanners.InBraces(_)
def unimplementedExpr(using Context): Select =
Select(scalaDot(nme.Predef), nme.???)
abstract class ParserCommon(val source: SourceFile)(using Context) {
val in: ScannerCommon
/* ------------- POSITIONS ------------------------------------------- */
/** Positions tree.
* If `t` does not have a span yet, set its span to the given one.
*/
def atSpan[T <: Positioned](span: Span)(t: T): T =
if (t.span.isSourceDerived) t else t.withSpan(span.union(t.span))
def atSpan[T <: Positioned](start: Offset, point: Offset, end: Offset)(t: T): T =
atSpan(Span(start, end, point))(t)
/** If the last read offset is strictly greater than `start`, assign tree
* the span from `start` to last read offset, with given point.
* If the last offset is less than or equal to start, the tree `t` did not
* consume any source for its construction. In this case, don't assign a span yet,
* but wait for its span to be determined by `setChildSpans` when the
* parent node is positioned.
*/
def atSpan[T <: Positioned](start: Offset, point: Offset)(t: T): T =
if (in.lastOffset > start) atSpan(start, point, in.lastOffset)(t) else t
def atSpan[T <: Positioned](start: Offset)(t: T): T =
atSpan(start, start)(t)
def startOffset(t: Positioned): Int =
if (t.span.exists) t.span.start else in.offset
def pointOffset(t: Positioned): Int =
if (t.span.exists) t.span.point else in.offset
def endOffset(t: Positioned): Int =
if (t.span.exists) t.span.end else in.lastOffset
def nameStart: Offset =
if (in.token == BACKQUOTED_IDENT) in.offset + 1 else in.offset
/** in.offset, except if this is at a new line, in which case `lastOffset` is preferred. */
def expectedOffset: Int = {
val current = in.sourcePos()
val last = in.sourcePos(in.lastOffset)
if (current.line != last.line) in.lastOffset else in.offset
}
/* ------------- ERROR HANDLING ------------------------------------------- */
/** The offset where the last syntax error was reported, or if a skip to a
* safepoint occurred afterwards, the offset of the safe point.
*/
protected var lastErrorOffset : Int = -1
/** Issue an error at given offset if beyond last error offset
* and update lastErrorOffset.
*/
def syntaxError(msg: Message, offset: Int = in.offset): Unit =
if offset > lastErrorOffset then
val length = if offset == in.offset && in.name != null then in.name.show.length else 0
syntaxError(msg, Span(offset, offset + length))
lastErrorOffset = in.offset
/** Unconditionally issue an error at given span, without
* updating lastErrorOffset.
*/
def syntaxError(msg: Message, span: Span): Unit =
report.error(msg, source.atSpan(span))
}
trait OutlineParserCommon extends ParserCommon {
def accept(token: Int): Int
def skipBracesHook(): Option[Tree]
def skipBraces(): Unit = {
accept(if (in.token == INDENT) INDENT else LBRACE)
var openBraces = 1
while (in.token != EOF && openBraces > 0)
skipBracesHook() getOrElse {
if (in.token == LBRACE || in.token == INDENT) openBraces += 1
else if (in.token == RBRACE || in.token == OUTDENT) openBraces -= 1
in.nextToken()
}
}
}
class Parser(source: SourceFile)(using Context) extends ParserCommon(source) {
val in: Scanner = new Scanner(source, profile = Profile.current)
// in.debugTokenStream = true // uncomment to see the token stream of the standard scanner, but not syntax highlighting
/** This is the general parse entry point.
* Overridden by ScriptParser
*/
def parse(): Tree = {
val t = compilationUnit()
accept(EOF)
t
}
/* -------------- TOKEN CLASSES ------------------------------------------- */
def isIdent = in.isIdent
def isIdent(name: Name) = in.isIdent(name)
def isPureArrow(name: Name): Boolean = isIdent(name) && Feature.pureFunsEnabled
def isPureArrow: Boolean = isPureArrow(nme.PUREARROW) || isPureArrow(nme.PURECTXARROW)
def isErased = isIdent(nme.erased) && in.erasedEnabled
// Are we seeing an `erased` soft keyword that will not be an identifier?
def isErasedKw = isErased && in.isSoftModifierInParamModifierPosition
def isSimpleLiteral =
simpleLiteralTokens.contains(in.token)
|| isIdent(nme.raw.MINUS) && numericLitTokens.contains(in.lookahead.token)
def isLiteral = literalTokens contains in.token
def isNumericLit = numericLitTokens contains in.token
def isTemplateIntro = templateIntroTokens contains in.token
def isDclIntro = dclIntroTokens contains in.token
def isStatSeqEnd = in.isNestedEnd || in.token == EOF || in.token == RPAREN
def mustStartStat = mustStartStatTokens contains in.token
/** Is current token a hard or soft modifier (in modifier position or not)? */
def isModifier: Boolean = modifierTokens.contains(in.token) || in.isSoftModifier
def isBindingIntro: Boolean = {
in.token match {
case USCORE => true
case IDENTIFIER | BACKQUOTED_IDENT =>
in.lookahead.isArrow
case LPAREN =>
val lookahead = in.LookaheadScanner()
lookahead.skipParens()
lookahead.isArrow
case _ => false
}
} && !in.isSoftModifierInModifierPosition
def isExprIntro: Boolean =
in.canStartExprTokens.contains(in.token)
&& !in.isSoftModifierInModifierPosition
&& !(isIdent(nme.extension) && followingIsExtension())
def isDefIntro(allowedMods: BitSet, excludedSoftModifiers: Set[TermName] = Set.empty): Boolean =
in.token == AT
|| defIntroTokens.contains(in.token)
|| allowedMods.contains(in.token)
|| in.isSoftModifierInModifierPosition && !excludedSoftModifiers.contains(in.name)
def isStatSep: Boolean = in.isStatSep
/** A '$' identifier is treated as a splice if followed by a `{`.
* A longer identifier starting with `$` is treated as a splice/id combination
* in a quoted block '{...'
*/
def isSplice: Boolean =
in.token == IDENTIFIER && in.name(0) == '$' && {
if in.name.length == 1 then in.lookahead.token == LBRACE
else (staged & StageKind.Quoted) != 0
}
/* ------------- ERROR HANDLING ------------------------------------------- */
/** Is offset1 less or equally indented than offset2?
* This is the case if the characters between the preceding end-of-line and offset1
* are a prefix of the characters between the preceding end-of-line and offset2.
*/
def isLeqIndented(offset1: Int, offset2: Int): Boolean = {
def recur(idx1: Int, idx2: Int): Boolean =
idx1 == offset1 ||
idx2 < offset2 && source(idx1) == source(idx2) && recur(idx1 + 1, idx2 + 1)
recur(source.startOfLine(offset1), source.startOfLine(offset2))
}
/** Skip on error to next safe point.
*/
def skip(): Unit =
in.skip()
lastErrorOffset = in.offset
def warning(msg: Message, offset: Int = in.offset): Unit =
report.warning(msg, source.atSpan(Span(offset)))
def deprecationWarning(msg: Message, offset: Int = in.offset): Unit =
report.deprecationWarning(msg, source.atSpan(Span(offset)))
/** Issue an error at current offset that input is incomplete */
def incompleteInputError(msg: Message): Unit =
if in.offset != lastErrorOffset then
report.incompleteInputError(msg, source.atSpan(Span(in.offset)))
/** If at end of file, issue an incompleteInputError.
* Otherwise issue a syntax error and skip to next safe point.
*/
def syntaxErrorOrIncomplete(msg: Message, offset: Int = in.offset): Unit =
if in.token == EOF then
incompleteInputError(msg)
else
syntaxError(msg, offset)
skip()
def syntaxErrorOrIncomplete(msg: Message, span: Span): Unit =
if in.token == EOF then
incompleteInputError(msg)
else
syntaxError(msg, span)
skip()
/** Consume one token of the specified type, or
* signal an error if it is not there.
*
* @return The offset at the start of the token to accept
*/
def accept(token: Int): Int =
val offset = in.offset
if in.token != token then
syntaxErrorOrIncomplete(ExpectedTokenButFound(token, in.token))
if in.token == token then in.nextToken()
offset
def accept(name: Name): Int = {
val offset = in.offset
if !isIdent(name) then
syntaxErrorOrIncomplete(em"`$name` expected")
if isIdent(name) then
in.nextToken()
offset
}
def acceptColon(): Int =
val offset = in.offset
if in.isColon then { in.nextToken(); offset }
else accept(COLONop)
/** semi = nl {nl} | `;'
* nl = `\n' // where allowed
*/
def acceptStatSep(): Unit =
if in.isNewLine then in.nextToken() else accept(SEMI)
/** Parse statement separators and end markers. Ensure that there is at least
* one statement separator unless the next token terminates a statement´sequence.
* @param stats the statements parsed to far
* @param noPrevStat true if there was no immediately preceding statement parsed
* @param what a string indicating what kind of statement is parsed
* @param altEnd a token that is also considered as a terminator of the statement
* sequence (the default `EOF` already assumes to terminate a statement
* sequence).
* @return true if the statement sequence continues, false if it terminates.
*/
def statSepOrEnd[T <: Tree](stats: ListBuffer[T], noPrevStat: Boolean = false, what: String = "statement", altEnd: Token = EOF): Boolean =
def recur(sepSeen: Boolean, endSeen: Boolean): Boolean =
if isStatSep then
in.nextToken()
recur(true, endSeen)
else if in.token == END then
if endSeen then syntaxError(em"duplicate end marker")
checkEndMarker(stats)
recur(sepSeen, endSeen = true)
else if isStatSeqEnd || in.token == altEnd then
false
else if sepSeen || endSeen then
true
else
val found = in.token
val statFollows = mustStartStatTokens.contains(found)
syntaxError(
if noPrevStat then IllegalStartOfStatement(what, isModifier, statFollows)
else em"end of $what expected but ${showToken(found)} found")
if mustStartStatTokens.contains(found) then
false // it's a statement that might be legal in an outer context
else
in.nextToken() // needed to ensure progress; otherwise we might cycle forever
skip()
true
in.observeOutdented()
recur(false, false)
end statSepOrEnd
def rewriteNotice(version: SourceVersion = `3.0-migration`, additionalOption: String = "") =
Message.rewriteNotice("This construct", version, additionalOption)
def syntaxVersionError(option: String, span: Span) =
syntaxError(em"""This construct is not allowed under $option.${rewriteNotice(`3.0-migration`, option)}""", span)
def rewriteToNewSyntax(span: Span = Span(in.offset)): Boolean = {
if (in.newSyntax) {
if (in.rewrite) return true
syntaxVersionError("-new-syntax", span)
}
false
}
def rewriteToOldSyntax(span: Span = Span(in.offset)): Boolean = {
if (in.oldSyntax) {
if (in.rewrite) return true
syntaxVersionError("-old-syntax", span)
}
false
}
def errorTermTree(start: Offset): Tree = atSpan(Span(start, in.offset)) { unimplementedExpr }
private var inFunReturnType = false
private def fromWithinReturnType[T](body: => T): T = {
val saved = inFunReturnType
try {
inFunReturnType = true
body
}
finally inFunReturnType = saved
}
/** A flag indicating we are parsing in the annotations of a primary
* class constructor
*/
private var inClassConstrAnnots = false
private def fromWithinClassConstr[T](body: => T): T = {
val saved = inClassConstrAnnots
inClassConstrAnnots = true
try body
finally inClassConstrAnnots = saved
}
private var inEnum = false
private def withinEnum[T](body: => T): T = {
val saved = inEnum
inEnum = true
try body
finally inEnum = saved
}
private var inMatchPattern = false
private def withinMatchPattern[T](body: => T): T = {
val saved = inMatchPattern
inMatchPattern = true
try body
finally inMatchPattern = saved
}
private var staged = StageKind.None
def withinStaged[T](kind: StageKind)(op: => T): T = {
val saved = staged
staged |= kind
try op
finally staged = saved
}
/* ---------- TREE CONSTRUCTION ------------------------------------------- */
/** Convert tree to formal parameter list
*/
def convertToParams(tree: Tree): List[ValDef] =
val mods =
if in.token == CTXARROW || isPureArrow(nme.PURECTXARROW)
then Modifiers(Given)
else EmptyModifiers
tree match
case Parens(t) =>
convertToParam(t, mods) :: Nil
case Tuple(ts) =>
ts.map(convertToParam(_, mods))
case t @ Typed(Ident(_), _) =>
report.errorOrMigrationWarning(
em"parentheses are required around the parameter of a lambda${rewriteNotice()}",
in.sourcePos(), MigrationVersion.Scala2to3)
if MigrationVersion.Scala2to3.needsPatch then
patch(source, t.span.startPos, "(")
patch(source, t.span.endPos, ")")
convertToParam(t, mods) :: Nil
case t =>
convertToParam(t, mods) :: Nil
/** Convert tree to formal parameter
*/
def convertToParam(tree: Tree, mods: Modifiers): ValDef =
def fail() =
syntaxError(em"not a legal formal parameter for a function literal", tree.span)
makeParameter(nme.ERROR, tree, mods)
tree match
case param: ValDef =>
param.withMods(param.mods | mods.flags)
case id @ Ident(name) =>
makeParameter(name.asTermName, TypeTree(), mods, isBackquoted = isBackquoted(id)).withSpan(tree.span)
// the following three cases are needed only for 2.x parameters without enclosing parentheses
case Typed(_, tpt: TypeBoundsTree) =>
fail()
case Typed(id @ Ident(name), tpt) =>
makeParameter(name.asTermName, tpt, mods, isBackquoted = isBackquoted(id)).withSpan(tree.span)
case _ =>
fail()
/** Checks that tuples don't contain a parameter. */
def checkNonParamTuple(t: Tree) = t match
case Tuple(ts) => ts.collectFirst {
case param: ValDef =>
syntaxError(em"invalid parameter definition syntax in tuple value", param.span)
}
case _ =>
/** Convert (qual)ident to type identifier
*/
def convertToTypeId(tree: Tree): Tree = tree match {
case id @ Ident(name) =>
cpy.Ident(id)(name.toTypeName)
case id @ Select(qual, name) =>
cpy.Select(id)(qual, name.toTypeName)
case _ =>
syntaxError(IdentifierExpected(tree.show), tree.span)
tree
}
def makePolyFunction(tparams: List[Tree], body: Tree,
kind: String, errorTree: => Tree,
start: Offset, arrowOffset: Offset): Tree =
atSpan(start, arrowOffset):
getFunction(body) match
case None =>
syntaxError(em"Implementation restriction: polymorphic function ${kind}s must have a value parameter", arrowOffset)
errorTree
case Some(Function(_, _: CapturesAndResult)) =>
// A function tree like this will be desugared
// into a capturing type in the typer.
syntaxError(em"Implementation restriction: polymorphic function types cannot wrap function types that have capture sets", arrowOffset)
errorTree
case Some(f) =>
PolyFunction(tparams, body)
/* --------------- PLACEHOLDERS ------------------------------------------- */
/** The implicit parameters introduced by `_` in the current expression.
* Parameters appear in reverse order.
*/
var placeholderParams: List[ValDef] = Nil
def checkNoEscapingPlaceholders[T](op: => T): T =
val savedPlaceholderParams = placeholderParams
val savedLanguageImportContext = in.languageImportContext
placeholderParams = Nil
try op
finally
placeholderParams match
case vd :: _ => syntaxError(UnboundPlaceholderParameter(), vd.span)
case _ =>
placeholderParams = savedPlaceholderParams
in.languageImportContext = savedLanguageImportContext
def isWildcard(t: Tree): Boolean = t match {
case Ident(name1) => placeholderParams.nonEmpty && name1 == placeholderParams.head.name
case Typed(t1, _) => isWildcard(t1)
case Annotated(t1, _) => isWildcard(t1)
case Parens(t1) => isWildcard(t1)
case _ => false
}
def isWildcardType(t: Tree): Boolean = t match {
case t: TypeBoundsTree => true
case Parens(t1) => isWildcardType(t1)
case _ => false
}
def rejectWildcardType(t: Tree, fallbackTree: Tree = scalaAny): Tree =
if (isWildcardType(t)) {
syntaxError(UnboundWildcardType(), t.span)
fallbackTree
}
else t
/* -------------- XML ---------------------------------------------------- */
/** The markup parser.
* The first time this lazy val is accessed, we assume we were trying to parse an XML literal.
* The current position is recorded for later error reporting if it turns out
* that we don't have scala-xml on the compilation classpath.
*/
lazy val xmlp: xml.MarkupParsers.MarkupParser = {
myFirstXmlPos = source.atSpan(Span(in.offset))
new MarkupParser(this, true)
}
/** The position of the first XML literal encountered while parsing,
* NoSourcePosition if there were no XML literals.
*/
def firstXmlPos: SourcePosition = myFirstXmlPos
private var myFirstXmlPos: SourcePosition = NoSourcePosition
object symbXMLBuilder extends xml.SymbolicXMLBuilder(this, true) // DEBUG choices
def xmlLiteral() : Tree = xmlDeprecationWarning(xmlp.xLiteral)
def xmlLiteralPattern() : Tree = xmlDeprecationWarning(xmlp.xLiteralPattern)
private def xmlDeprecationWarning(tree: Tree): Tree =
report.errorOrMigrationWarning(
em"""XML literals are no longer supported.
|See https://docs.scala-lang.org/scala3/reference/dropped-features/xml.html""",
tree.srcPos,
MigrationVersion.XmlLiteral)
tree
/* -------- COMBINATORS -------------------------------------------------------- */
def enclosed[T](tok: Token, body: => T): T =
accept(tok)
try body finally accept(tok + 1)
/** Same as enclosed, but if closing token is missing, add `,` to the expected tokens
* in the error message provided the next token could have followed a `,`.
*/
def enclosedWithCommas[T](tok: Token, body: => T): T =
accept(tok)
val closing = tok + 1
val isEmpty = in.token == closing
val ts = body
if in.token != closing then
val followComma =
if tok == LPAREN then canStartExprTokens3 else canStartTypeTokens
val prefix = if !isEmpty && followComma.contains(in.token) then "',' or " else ""
syntaxErrorOrIncomplete(ExpectedTokenButFound(closing, in.token, prefix))
if in.token == closing then in.nextToken()
ts
def inParens[T](body: => T): T = enclosed(LPAREN, body)
def inBraces[T](body: => T): T = enclosed(LBRACE, body)
def inBrackets[T](body: => T): T = enclosed(LBRACKET, body)
def inParensWithCommas[T](body: => T): T = enclosedWithCommas(LPAREN, body)
def inBracketsWithCommas[T](body: => T): T = enclosedWithCommas(LBRACKET, body)
def inBracesOrIndented[T](body: => T, rewriteWithColon: Boolean = false): T =
if in.token == INDENT then
val rewriteToBraces = in.rewriteNoIndent
&& !testChars(in.lastOffset - 3, " =>") // braces are always optional after `=>` so none should be inserted
if rewriteToBraces then indentedToBraces(body)
else enclosed(INDENT, body)
else
if in.rewriteToIndent then bracesToIndented(body, rewriteWithColon)
else inBraces(body)
def inDefScopeBraces[T](body: => T, rewriteWithColon: Boolean = false): T =
inBracesOrIndented(body, rewriteWithColon)
/** <part> {`,` <part>} */
def commaSeparated[T](part: () => T): List[T] =
in.currentRegion.withCommasExpected {
commaSeparatedRest(part(), part)
}
/** {`,` <part>}
*
* currentRegion.commasExpected has to be set separately.
*/
def commaSeparatedRest[T](leading: T, part: () => T): List[T] =
if in.token == COMMA then
val ts = new ListBuffer[T] += leading
while in.token == COMMA do
in.nextToken()
ts += part()
ts.toList
else leading :: Nil
def maybeNamed(op: () => Tree): () => Tree = () =>
if isIdent && in.lookahead.token == EQUALS && in.featureEnabled(Feature.namedTuples) then
atSpan(in.offset):
val name = ident()
in.nextToken()
NamedArg(name, op())
else op()
def inSepRegion[T](f: Region => Region)(op: => T): T =
val cur = in.currentRegion
in.currentRegion = f(cur)
try op finally in.currentRegion = cur
/** Parse `body` while checking (under -no-indent) that a `{` is not missing before it.
* This is done as follows:
* If the next token S is indented relative to the current region,
* and the end of `body` is followed by a new line and another statement,
* check that that other statement is indented less than S
*/
def subPart[T](body: () => T): T = in.currentRegion match
case r: InBraces if in.isAfterLineEnd =>
val startIndentWidth = in.indentWidth(in.offset)
if r.indentWidth < startIndentWidth then
// Note: we can get here only if indentation is not significant
// If indentation is significant, we would see an <indent> as current token
// and the indent region would be Indented instead of InBraces.
//
// If indentation would be significant, an <indent> would be inserted here.
val t = body()
// Therefore, make sure there would be a matching <outdent>
def nextIndentWidth = in.indentWidth(in.next.offset)
if in.isNewLine && !(nextIndentWidth < startIndentWidth) then
warning(
if startIndentWidth <= nextIndentWidth then
em"""Line is indented too far to the right, or a `{` is missing before:
|
|${t.tryToShow}"""
else
in.spaceTabMismatchMsg(startIndentWidth, nextIndentWidth),
in.next.offset
)
t
else body()
case _ => body()
/** Check that this is not the start of a statement that's indented relative to the current region.
*/
def checkNextNotIndented(): Unit =
if in.isNewLine then
val nextIndentWidth = in.indentWidth(in.next.offset)
if in.currentRegion.indentWidth < nextIndentWidth then
warning(em"Line is indented too far to the right, or a `{` or `:` is missing", in.next.offset)
/* -------- REWRITES ----------------------------------------------------------- */
/** The last offset where a colon at the end of line would be required if a subsequent { ... }
* block would be converted to an indentation region.
*/
var possibleColonOffset: Int = -1
def testChar(idx: Int, p: Char => Boolean): Boolean = {
val txt = source.content
idx < txt.length && p(txt(idx))
}
def testChar(idx: Int, c: Char): Boolean = {
val txt = source.content
idx < txt.length && txt(idx) == c
}
def testChars(from: Int, str: String): Boolean =
str.isEmpty ||
testChar(from, str.head) && testChars(from + 1, str.tail)
def skipBlanks(idx: Int, step: Int = 1): Int =
if (testChar(idx, c => c == ' ' || c == '\t' || c == Chars.CR)) skipBlanks(idx + step, step)
else idx
/** Parse indentation region `body` and rewrite it to be in braces instead */
def indentedToBraces[T](body: => T): T =
val enclRegion = in.currentRegion.enclosing // capture on entry
def indentWidth = enclRegion.indentWidth
val followsColon = testChar(in.lastOffset - 1, ':')
/** Is `expr` a tree that lacks a final `else`? Put such trees in `{...}` to make
* sure we don't accidentally merge them with a following `else`.
*/
def isPartialIf(expr: Tree): Boolean = expr match {
case If(_, _, EmptyTree) => true
case If(_, _, e) => isPartialIf(e)
case _ => false
}
/** Is `expr` a (possibly curried) function that has a multi-statement block
* as body? Put such trees in `{...}` since we don't enclose statements following
* a `=>` in braces.
*/
def isBlockFunction[T](expr: T): Boolean = expr match {
case Function(_, body) => isBlockFunction(body)
case Block(stats, expr) => stats.nonEmpty || isBlockFunction(expr)
case _ => false
}
/** Start of first line after in.lastOffset that does not have a comment
* at indent width greater than the indent width of the closing brace.
*/
def closingOffset(lineStart: Offset): Offset =
if in.lineOffset >= 0 && lineStart >= in.lineOffset then in.lineOffset
else
val commentStart = skipBlanks(lineStart)
if testChar(commentStart, '/') && indentWidth < in.indentWidth(commentStart)
then closingOffset(source.nextLine(lineStart))
else lineStart
def needsBraces(t: Any): Boolean = t match {
case Match(EmptyTree, _) => true
case Block(stats, expr) => stats.nonEmpty || needsBraces(expr)
case expr: Tree => followsColon
|| isPartialIf(expr) && in.token == ELSE
|| isBlockFunction(expr)
case _ => true
}
// begin indentedToBraces
val startOpening =
if followsColon then
if testChar(in.lastOffset - 2, ' ') then in.lastOffset - 2
else in.lastOffset - 1
else in.lastOffset
val endOpening = in.lastOffset
val t = enclosed(INDENT, body)
if needsBraces(t) then
patch(source, Span(startOpening, endOpening), " {")
val next = in.next
def closedByEndMarker =
next.token == END && (next.offset - next.lineOffset) == indentWidth.toPrefix.size
if closedByEndMarker then patch(source, Span(next.offset), "} // ")
else patch(source, Span(closingOffset(source.nextLine(in.lastOffset))), indentWidth.toPrefix ++ "}\n")
t
end indentedToBraces
/** The region to eliminate when replacing an opening `(` or `{` that ends a line.
* The `(` or `{` is at in.offset.
*/
def startingElimRegion(colonRequired: Boolean): (Offset, Offset) = {
val skipped = skipBlanks(in.offset + 1)
if (in.isAfterLineEnd)
if (testChar(skipped, Chars.LF) && !colonRequired)
(in.lineOffset, skipped + 1) // skip the whole line
else
(in.offset, skipped)
else if (testChar(in.offset - 1, ' ')) (in.offset - 1, in.offset + 1)
else (in.offset, in.offset + 1)
}
/** The region to eliminate when replacing a closing `)` or `}` that starts a new line
* The `)` or `}` precedes in.lastOffset.
*/
def closingElimRegion(): (Offset, Offset) = {
val skipped = skipBlanks(in.lastOffset)
if (testChar(skipped, Chars.LF)) // if `)` or `}` is on a line by itself
(source.startOfLine(in.lastOffset), skipped + 1) // skip the whole line
else // else
(in.lastOffset - 1, skipped) // move the following text up to where the `)` or `}` was
}
/** Parse brace-enclosed `body` and rewrite it to be an indentation region instead, if possible.
* If possible means:
* 1. not inside (...), [...], case ... =>
* 2. opening brace `{` is at end of line
* 3. closing brace `}` is at start of line
* 4. there is at least one token between the braces
* 5. the closing brace is also at the end of the line, or it is followed by one of
* `then`, `else`, `do`, `catch`, `finally`, `yield`, or `match`.
* 6. the opening brace does not follow a `=>`. The reason for this condition is that
* rewriting back to braces does not work after `=>` (since in most cases braces are omitted
* after a `=>` it would be annoying if braces were inserted).
* 7. not a code block being the input to a direct symbolic function call `inst method {\n expr \n}` cannot
* become `inst method :\n expr` for a fully symbolic method
*/
def bracesToIndented[T](body: => T, rewriteWithColon: Boolean): T = {
val underColonSyntax = possibleColonOffset == in.lastOffset
val colonRequired = rewriteWithColon || underColonSyntax
val (startOpening, endOpening) = startingElimRegion(colonRequired)
val isOutermost = in.currentRegion.isOutermost
def allBraces(r: Region): Boolean = r match {
case r: Indented => r.isOutermost || allBraces(r.enclosing)
case r: InBraces => allBraces(r.enclosing)
case _ => false
}
var canRewrite = allBraces(in.currentRegion) && // test (1)
!testChars(in.lastOffset - 3, " =>") // test(6)
def isStartOfSymbolicFunction: Boolean =
opStack.headOption.exists { x =>
val bq = x.operator.isBackquoted
val op = x.operator.name.toSimpleName.decode.forall {
Chars.isOperatorPart
}
val loc = startOpening < x.offset && x.offset < endOpening
val res = !bq && op && loc
res
}
val t = enclosed(LBRACE, {
canRewrite &= in.isAfterLineEnd // test (2)
val curOffset = in.offset
try {
val bodyResolved = body
bodyResolved match
case x:(Match | Block) =>
canRewrite &= !isStartOfSymbolicFunction // test (7)
case _ =>
bodyResolved
}
finally {
canRewrite &= in.isAfterLineEnd && in.offset != curOffset // test (3)(4)
}
})
canRewrite &= (in.isAfterLineEnd || statCtdTokens.contains(in.token)) // test (5)
if canRewrite && (!underColonSyntax || Feature.fewerBracesEnabled) then
val openingPatchStr =
if !colonRequired then ""
else if testChar(startOpening - 1, Chars.isOperatorPart(_)) then " :"
else ":"
val (startClosing, endClosing) = closingElimRegion()
patch(source, Span(startOpening, endOpening), openingPatchStr)
patch(source, Span(startClosing, endClosing), "")
t
}
/** Drop (...) or { ... }, replacing the closing element with `endStr` */
def dropParensOrBraces(start: Offset, endStr: String): Unit = {
if (testChar(start + 1, Chars.isLineBreakChar))
patch(source, Span(if (testChar(start - 1, ' ')) start - 1 else start, start + 1), "")
else
patch(source, Span(start, start + 1),
if (testChar(start - 1, Chars.isIdentifierPart)) " " else "")
val closingStartsLine = testChar(skipBlanks(in.lastOffset - 2, -1), Chars.LF)
val preFill = if (closingStartsLine || endStr.isEmpty) "" else " "
val postFill = if (in.lastOffset == in.offset) " " else ""
val (startClosing, endClosing) =
if (closingStartsLine && endStr.isEmpty) closingElimRegion()
else (in.lastOffset - 1, in.lastOffset)
patch(source, Span(startClosing, endClosing), s"$preFill$endStr$postFill")
}
/** If all other characters on the same line as `span` are blanks, widen to
* the whole line.
*/
def widenIfWholeLine(span: Span): Span = {
val start = skipBlanks(span.start - 1, -1)
val end = skipBlanks(span.end, 1)
if (testChar(start, Chars.LF) && testChar(end, Chars.LF)) Span(start, end)
else span
}
/** Drop current token, if it is a `then` or `do`. */
def dropTerminator(): Unit =
if in.token == THEN || in.token == DO then
var startOffset = in.offset
var endOffset = in.lastCharOffset
if (in.isAfterLineEnd) {
if (testChar(endOffset, ' '))
endOffset += 1
}
else
if (testChar(startOffset - 1, ' ') &&
!overlapsPatch(source, Span(startOffset - 1, endOffset)))
startOffset -= 1
patch(source, widenIfWholeLine(Span(startOffset, endOffset)), "")
/** rewrite code with (...) around the source code of `t` */
def revertToParens(t: Tree): Unit =
if (t.span.exists) {
patch(source, t.span.startPos, "(")
patch(source, t.span.endPos, ")")
dropTerminator()
}
/* --------- LOOKAHEAD --------------------------------------- */
/** In the tokens following the current one, does `query` precede any of the tokens that
* - must start a statement, or
* - separate two statements, or
* - continue a statement (e.g. `else`, catch`), or
* - terminate the current scope?
*/
def followedByToken(query: Token): Boolean = {
val lookahead = in.LookaheadScanner()
var braces = 0
while (true) {
val token = lookahead.token
if (query != LARROW && token == XMLSTART) return false
if (braces == 0) {
if (token == query) return true
if (stopScanTokens.contains(token) || lookahead.isNestedEnd) return false
}
else if (token == EOF)
return false
else if (lookahead.isNestedEnd)
braces -= 1
if (lookahead.isNestedStart) braces += 1
lookahead.nextToken()
}
false
}
/** Is the following sequence the generators of a for-expression enclosed in (...)? */
def followingIsEnclosedGenerators(): Boolean = {
val lookahead = in.LookaheadScanner()
var parens = 1
lookahead.nextToken()
while (parens != 0 && lookahead.token != EOF) {
val token = lookahead.token
if (token == XMLSTART) return true
if (token == LPAREN) parens += 1
else if (token == RPAREN) parens -= 1
lookahead.nextToken()
}
if (lookahead.token == LARROW)
false // it's a pattern
else if (lookahead.isIdent)
true // it's not a pattern since token cannot be an infix operator
else
followedByToken(LARROW) // `<-` comes before possible statement starts
}
/** Are the next tokens a valid continuation of a named given def?
* i.e. an identifier, possibly followed by type and value parameters, followed by `:`?
* @pre The current token is an identifier
*/
def followingIsGivenDefWithColon() =
val lookahead = in.LookaheadScanner()