aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/pickling/PickleFormat.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 16:11:59 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 16:11:59 +0200
commit9602523e0b6b89b73f77ac45f9a5b58060fcd6cf (patch)
tree1931f9408365849418261673826be15666b150ff /src/dotty/tools/dotc/core/pickling/PickleFormat.scala
parent34e77a9fe24106728a21d6d88a7ee8e42cca4dae (diff)
downloaddotty-9602523e0b6b89b73f77ac45f9a5b58060fcd6cf.tar.gz
dotty-9602523e0b6b89b73f77ac45f9a5b58060fcd6cf.tar.bz2
dotty-9602523e0b6b89b73f77ac45f9a5b58060fcd6cf.zip
Replace tabs with 4 spaces in Dotty source.
Diffstat (limited to 'src/dotty/tools/dotc/core/pickling/PickleFormat.scala')
-rw-r--r--src/dotty/tools/dotc/core/pickling/PickleFormat.scala38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/dotty/tools/dotc/core/pickling/PickleFormat.scala b/src/dotty/tools/dotc/core/pickling/PickleFormat.scala
index 872265e2d..d12a879ba 100644
--- a/src/dotty/tools/dotc/core/pickling/PickleFormat.scala
+++ b/src/dotty/tools/dotc/core/pickling/PickleFormat.scala
@@ -29,7 +29,7 @@ Macro-format:
Section = NameRef Length Bytes
Length = Nat // length of rest of entry in bytes
- Name = UTF8 Length UTF8-CodePoint*
+ Name = UTF8 Length UTF8-CodePoint*
QUALIFIED Length qualified_NameRef selector_NameRef
SIGNED Length original_NameRef resultSig_NameRef paramSig_NameRef*
EXPANDED Length original_NameRef
@@ -95,7 +95,7 @@ Standard-Section: "ASTs" TopLevelStat*
TYPEAPPLY Length fn_Term arg_Type*
CaseDef = CASEDEF Length pat_Term rhs_Tree guard_Tree?
ImplicitArg = IMPLICITARG arg_Term
- ASTRef = Nat // byte position in AST payload
+ ASTRef = Nat // byte position in AST payload
Path = Constant
TERMREFdirect sym_ASTRef
@@ -146,10 +146,10 @@ Standard-Section: "ASTs" TopLevelStat*
NameType = paramName_NameRef typeOrBounds_ASTRef
Modifier = PRIVATE
- INTERNAL // package private
+ INTERNAL // package private
PROTECTED
- PRIVATEqualified qualifier_Type // will be dropped
- PROTECTEDqualified qualifier_Type // will be dropped
+ PRIVATEqualified qualifier_Type // will be dropped
+ PROTECTEDqualified qualifier_Type // will be dropped
ABSTRACT
FINAL
SEALED
@@ -158,20 +158,20 @@ Standard-Section: "ASTs" TopLevelStat*
LAZY
OVERRIDE
INLINE // macro
- ABSOVERRIDE // abstract override
- STATIC // mapped to static Java member
- OBJECT // an object or its class
+ ABSOVERRIDE // abstract override
+ STATIC // mapped to static Java member
+ OBJECT // an object or its class
TRAIT // a trait
- LOCAL // private[this] or protected[this]
- SYNTHETIC // generated by Scala compiler
- ARTIFACT // to be tagged Java Synthetic
- MUTABLE // a var
- LABEL // method generated as a label
- FIELDaccessor // getter or setter
- CASEaccessor // getter for case class param
- COVARIANT // type param marked “+”
- CONTRAVARIANT // type param marked “-”
- SCALA2X // Imported from Scala2.x
+ LOCAL // private[this] or protected[this]
+ SYNTHETIC // generated by Scala compiler
+ ARTIFACT // to be tagged Java Synthetic
+ MUTABLE // a var
+ LABEL // method generated as a label
+ FIELDaccessor // getter or setter
+ CASEaccessor // getter for case class param
+ COVARIANT // type param marked “+”
+ CONTRAVARIANT // type param marked “-”
+ SCALA2X // Imported from Scala2.x
DEFAULTparameterized // Method with default params
INSUPERCALL // defined in the argument of a constructor supercall
Annotation
@@ -199,7 +199,7 @@ Standard Section: "Positions" sourceLength_Nat Assoc*
// Difference of end offset of addressed node vs parent node.
// Offsets and addresses are difference encoded.
// Nodes which have the same positions as their parents are omitted.
- Delta = Int // Difference between consecutive offsets / tree addresses,
+ Delta = Int // Difference between consecutive offsets / tree addresses,
**************************************************************************************/