aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/pickling/PickleBuffer.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-03-07 11:05:02 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2014-03-20 13:02:40 +0100
commit7a04b119c9744262bd46c1795b811f56df9516a6 (patch)
treefb98dc39eff900b0dd1af4106ae84910c75fc417 /src/dotty/tools/dotc/core/pickling/PickleBuffer.scala
parent574a148fd561a793ee522c2be18ee02214236d80 (diff)
downloaddotty-7a04b119c9744262bd46c1795b811f56df9516a6.tar.gz
dotty-7a04b119c9744262bd46c1795b811f56df9516a6.tar.bz2
dotty-7a04b119c9744262bd46c1795b811f56df9516a6.zip
Removed explicit tuplings from dotc codebase.
Eliminated all "Dotty deviations" which were due to lack of auto-tupling.
Diffstat (limited to 'src/dotty/tools/dotc/core/pickling/PickleBuffer.scala')
-rw-r--r--src/dotty/tools/dotc/core/pickling/PickleBuffer.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dotty/tools/dotc/core/pickling/PickleBuffer.scala b/src/dotty/tools/dotc/core/pickling/PickleBuffer.scala
index 2bedcab92..ef2b4acb2 100644
--- a/src/dotty/tools/dotc/core/pickling/PickleBuffer.scala
+++ b/src/dotty/tools/dotc/core/pickling/PickleBuffer.scala
@@ -229,8 +229,8 @@ object PickleBuffer {
PARAM -> Param,
PACKAGE -> Package,
MACRO -> Macro,
- BYNAMEPARAM -> ((Method, Covariant)), // Dotty deviation: no auto-tupling
- LABEL -> ((Label, Contravariant)), // Dotty deviation: no auto-tupling
+ BYNAMEPARAM -> (Method, Covariant),
+ LABEL -> (Label, Contravariant),
ABSOVERRIDE -> AbsOverride,
LOCAL -> Local,
JAVA -> JavaDefined,
@@ -238,16 +238,16 @@ object PickleBuffer {
STABLE -> Stable,
STATIC -> Static,
CASEACCESSOR -> CaseAccessor,
- DEFAULTPARAM -> ((DefaultParameterized, Trait)), // Dotty deviation: no auto-tupling
+ DEFAULTPARAM -> (DefaultParameterized, Trait),
BRIDGE -> Bridge,
ACCESSOR -> Accessor,
SUPERACCESSOR -> SuperAccessor,
PARAMACCESSOR -> ParamAccessor,
MODULEVAR -> Scala2ModuleVar,
LAZY -> Lazy,
- MIXEDIN -> ((MixedIn, Scala2Existential)), // Dotty deviation: no auto-tupling
+ MIXEDIN -> (MixedIn, Scala2Existential),
EXPANDEDNAME -> ExpandedName,
- IMPLCLASS -> ((Scala2PreSuper, ImplClass)), // Dotty deviation: no auto-tupling
+ IMPLCLASS -> (Scala2PreSuper, ImplClass),
SPECIALIZED -> Specialized,
DEFAULTINIT -> DefaultInit,
VBRIDGE -> VBridge,