Skip to content

Commit 3c50954

Browse files
authored
Merge pull request #5825 from dotty-staging/change-implied
Syntax changes for new implicits
2 parents 03887b7 + f397165 commit 3c50954

File tree

108 files changed

+1468
-1855
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+1468
-1855
lines changed

compiler/src/dotty/tools/dotc/ast/Desugar.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -1089,8 +1089,8 @@ object desugar {
10891089
}
10901090

10911091
def makeContextualFunction(formals: List[Type], body: Tree)(implicit ctx: Context): Tree = {
1092-
val params = makeImplicitParameters(formals.map(TypeTree), Contextual)
1093-
new FunctionWithMods(params, body, Modifiers(Implicit | Contextual))
1092+
val params = makeImplicitParameters(formals.map(TypeTree), Given)
1093+
new FunctionWithMods(params, body, Modifiers(Implicit | Given))
10941094
}
10951095

10961096
/** Add annotation to tree:

compiler/src/dotty/tools/dotc/ast/TreeInfo.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -331,13 +331,13 @@ trait UntypedTreeInfo extends TreeInfo[Untyped] { self: Trees.Instance[Untyped]
331331

332332
/** Is `tree` an implicit function or closure, possibly nested in a block? */
333333
def isContextualClosure(tree: Tree)(implicit ctx: Context): Boolean = unsplice(tree) match {
334-
case tree: FunctionWithMods => tree.mods.is(Contextual)
335-
case Function((param: untpd.ValDef) :: _, _) => param.mods.is(Contextual)
334+
case tree: FunctionWithMods => tree.mods.is(Given)
335+
case Function((param: untpd.ValDef) :: _, _) => param.mods.is(Given)
336336
case Closure(_, meth, _) => true
337337
case Block(Nil, expr) => isContextualClosure(expr)
338338
case Block(DefDef(nme.ANON_FUN, _, params :: _, _, _) :: Nil, cl: Closure) =>
339339
params match {
340-
case param :: _ => param.mods.is(Contextual)
340+
case param :: _ => param.mods.is(Given)
341341
case Nil => cl.tpt.eq(untpd.ContextualEmptyTree) || defn.isImplicitFunctionType(cl.tpt.typeOpt)
342342
}
343343
case _ => false

compiler/src/dotty/tools/dotc/ast/tpd.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ object tpd extends Trees.Instance[Type] with TypedTreeInfo {
234234

235235
def valueParam(name: TermName, origInfo: Type): TermSymbol = {
236236
val maybeImplicit =
237-
if (tp.isContextual) Implicit | Contextual
237+
if (tp.isContextual) Implicit | Given
238238
else if (tp.isImplicitMethod) Implicit
239239
else EmptyFlags
240240
val maybeErased = if (tp.isErasedMethod) Erased else EmptyFlags

compiler/src/dotty/tools/dotc/ast/untpd.scala

+2
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ object untpd extends Trees.Instance[Untyped] with UntypedTreeInfo {
132132

133133
case class Implicit()(implicit @constructorOnly src: SourceFile) extends Mod(Flags.ImplicitCommon)
134134

135+
case class Given()(implicit @constructorOnly src: SourceFile) extends Mod(Flags.ImplicitCommon | Flags.Given)
136+
135137
case class Erased()(implicit @constructorOnly src: SourceFile) extends Mod(Flags.Erased)
136138

137139
case class Final()(implicit @constructorOnly src: SourceFile) extends Mod(Flags.Final)

compiler/src/dotty/tools/dotc/core/Definitions.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class Definitions {
100100
* ImplicitFunctionN traits follow this template:
101101
*
102102
* trait ImplicitFunctionN[T0,...,T{N-1}, R] extends Object {
103-
* def apply with ($x0: T0, ..., $x{N_1}: T{N-1}): R
103+
* def apply given ($x0: T0, ..., $x{N_1}: T{N-1}): R
104104
* }
105105
*
106106
* ErasedFunctionN traits follow this template:
@@ -112,7 +112,7 @@ class Definitions {
112112
* ErasedImplicitFunctionN traits follow this template:
113113
*
114114
* trait ErasedImplicitFunctionN[T0,...,T{N-1}, R] extends Object {
115-
* def apply with (erased $x0: T0, ..., $x{N_1}: T{N-1}): R
115+
* def apply given (erased $x0: T0, ..., $x{N_1}: T{N-1}): R
116116
* }
117117
*
118118
* ErasedFunctionN and ErasedImplicitFunctionN erase to Function0.

compiler/src/dotty/tools/dotc/core/Flags.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,8 @@ object Flags {
347347
/** An extension method */
348348
final val Extension = termFlag(28, "<extension>")
349349

350-
/** A contextual (with) parameter */
351-
final val Contextual = commonFlag(29, "<contextual>")
350+
/** An inferable (`given`) parameter */
351+
final val Given = commonFlag(29, "given")
352352

353353
/** Symbol is defined by a Java class */
354354
final val JavaDefined: FlagSet = commonFlag(30, "<java>")

compiler/src/dotty/tools/dotc/core/StdNames.scala

-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,6 @@ object StdNames {
483483
val notifyAll_ : N = "notifyAll"
484484
val notify_ : N = "notify"
485485
val null_ : N = "null"
486-
val of: N = "of"
487486
val ofDim: N = "ofDim"
488487
val opaque: N = "opaque"
489488
val ordinal: N = "ordinal"

compiler/src/dotty/tools/dotc/core/Types.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -3879,11 +3879,11 @@ object Types {
38793879
def selfType(implicit ctx: Context): Type = {
38803880
if (selfTypeCache == null)
38813881
selfTypeCache = {
3882-
val given = cls.givenSelfType
3883-
if (!given.isValueType) appliedRef
3884-
else if (cls is Module) given
3882+
val givenSelf = cls.givenSelfType
3883+
if (!givenSelf.isValueType) appliedRef
3884+
else if (cls is Module) givenSelf
38853885
else if (ctx.erasedTypes) appliedRef
3886-
else AndType(given, appliedRef)
3886+
else AndType(givenSelf, appliedRef)
38873887
}
38883888
selfTypeCache
38893889
}

compiler/src/dotty/tools/dotc/core/tasty/TastyFormat.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Standard-Section: "ASTs" TopLevelStat*
203203
DEFAULTparameterized // Method with default parameters
204204
STABLE // Method that is assumed to be stable
205205
EXTENSION // An extension method
206-
CONTEXTUAL // new style implicit parameters, introduced with `with`
206+
GIVEN // new style implicit parameters, introduced with `given`
207207
PARAMsetter // A setter without a body named `x_=` where `x` is pickled as a PARAM
208208
Annotation
209209
@@ -323,7 +323,7 @@ object TastyFormat {
323323
final val ERASED = 34
324324
final val OPAQUE = 35
325325
final val EXTENSION = 36
326-
final val CONTEXTUAL = 37
326+
final val GIVEN = 37
327327
final val PARAMsetter = 38
328328

329329
// Cat. 2: tag Nat
@@ -497,7 +497,7 @@ object TastyFormat {
497497
| DEFAULTparameterized
498498
| STABLE
499499
| EXTENSION
500-
| CONTEXTUAL
500+
| GIVEN
501501
| PARAMsetter
502502
| ANNOTATION
503503
| PRIVATEqualified
@@ -558,7 +558,7 @@ object TastyFormat {
558558
case DEFAULTparameterized => "DEFAULTparameterized"
559559
case STABLE => "STABLE"
560560
case EXTENSION => "EXTENSION"
561-
case CONTEXTUAL => "CONTEXTUAL"
561+
case GIVEN => "GIVEN"
562562
case PARAMsetter => "PARAMsetter"
563563

564564
case SHAREDterm => "SHAREDterm"

compiler/src/dotty/tools/dotc/core/tasty/TreePickler.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ class TreePickler(pickler: TastyPickler) {
655655
if (flags is DefaultParameterized) writeByte(DEFAULTparameterized)
656656
if (flags is StableRealizable) writeByte(STABLE)
657657
if (flags is Extension) writeByte(EXTENSION)
658-
if (flags is Contextual) writeByte(CONTEXTUAL)
658+
if (flags is Given) writeByte(GIVEN)
659659
if (flags is ParamAccessor) writeByte(PARAMsetter)
660660
assert(!(flags is Label))
661661
} else {

compiler/src/dotty/tools/dotc/core/tasty/TreeUnpickler.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ class TreeUnpickler(reader: TastyReader,
632632
case DEFAULTparameterized => addFlag(DefaultParameterized)
633633
case STABLE => addFlag(StableRealizable)
634634
case EXTENSION => addFlag(Extension)
635-
case CONTEXTUAL => addFlag(Contextual)
635+
case GIVEN => addFlag(Given)
636636
case PARAMsetter =>
637637
addFlag(ParamAccessor)
638638
case PRIVATEqualified =>

0 commit comments

Comments
 (0)