summaryrefslogtreecommitdiff
path: root/sources/scalac/typechecker
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/typechecker')
-rw-r--r--sources/scalac/typechecker/Analyzer.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/scalac/typechecker/Analyzer.java b/sources/scalac/typechecker/Analyzer.java
index 84c9c6b4a4..174dd6269f 100644
--- a/sources/scalac/typechecker/Analyzer.java
+++ b/sources/scalac/typechecker/Analyzer.java
@@ -16,6 +16,7 @@
package scalac.typechecker;
import ch.epfl.lamp.util.Position;
+import ch.epfl.lamp.util.Pair;
import scalac.*;
import scalac.util.*;
import scalac.ast.*;
@@ -830,7 +831,7 @@ public class Analyzer extends Transformer implements Modifiers, Kinds {
// set the comment associated with a symbol
String comment = (String) global.mapTreeComment.get(tree);
if (comment != null)
- global.mapSymbolComment.put(sym, comment);
+ global.mapSymbolComment.put(sym, new Pair(comment, unit));
return sym;
}