aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/ast/untpd.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-12-04 12:44:08 +0100
committerMartin Odersky <odersky@gmail.com>2016-12-17 18:34:27 +0100
commit63ba924a5ad9c01768be22f0b115c9501aa9f23a (patch)
tree2ed16fab59d9012882219d986178cff9735b6a03 /compiler/src/dotty/tools/dotc/ast/untpd.scala
parente6da2137f48ca6019b826be501ac64e452e5fe7e (diff)
downloaddotty-63ba924a5ad9c01768be22f0b115c9501aa9f23a.tar.gz
dotty-63ba924a5ad9c01768be22f0b115c9501aa9f23a.tar.bz2
dotty-63ba924a5ad9c01768be22f0b115c9501aa9f23a.zip
Cleanup of implicit modifiers scheme
Implicit modifiers were quite irregular compared to the other ones. This commit does a cleanup.
Diffstat (limited to 'compiler/src/dotty/tools/dotc/ast/untpd.scala')
-rw-r--r--compiler/src/dotty/tools/dotc/ast/untpd.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/dotty/tools/dotc/ast/untpd.scala b/compiler/src/dotty/tools/dotc/ast/untpd.scala
index 25b69b1f5..9707770d5 100644
--- a/compiler/src/dotty/tools/dotc/ast/untpd.scala
+++ b/compiler/src/dotty/tools/dotc/ast/untpd.scala
@@ -115,7 +115,7 @@ object untpd extends Trees.Instance[Untyped] with UntypedTreeInfo {
case class Var() extends Mod(Flags.Mutable)
- case class Implicit(flag: FlagSet = Flags.ImplicitCommon) extends Mod(flag)
+ case class Implicit() extends Mod(Flags.ImplicitCommon)
case class Final() extends Mod(Flags.Final)