summaryrefslogtreecommitdiff
path: root/src/attic
diff options
context:
space:
mode:
Diffstat (limited to 'src/attic')
-rw-r--r--src/attic/scala/tools/nsc/models/SemanticTokens.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/attic/scala/tools/nsc/models/SemanticTokens.scala b/src/attic/scala/tools/nsc/models/SemanticTokens.scala
index 5b492ba056..ab75bbbcfc 100644
--- a/src/attic/scala/tools/nsc/models/SemanticTokens.scala
+++ b/src/attic/scala/tools/nsc/models/SemanticTokens.scala
@@ -406,17 +406,6 @@ class SemanticTokens(val compiler: Global) {
doLog = false;
}
};
-/*
- Martin to Sean: I don't understand why AbsTypeDef is different from AliasTypeDef.
- Why is the order reversed? Why two buildDefs for tree.symbol vs one for AliasTypeDef?
- case tree: AbsTypeDef =>
- //Console.err.println("ABS: " + tree.symbol + " " + unit.source.dbg(tree.namePos) + " " + tree.pos.dbgString);
- buildDef(tree.symbol, tree.namePos)
- buildDef(tree.symbol, tree.pos.pointOrElse(-1))
- build(tree.tparams); //@M
- build(tree.lo)
- build(tree.hi)
-*/
case tree: Bind =>
buildDef(tree.symbol, tree.pos.pointOrElse(-1))
build(tree.body)