summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/StdAttachments.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-11-06 16:58:08 +1000
committerJason Zaugg <jzaugg@gmail.com>2014-11-06 17:09:21 +1000
commit17992f672f7d5663654a1ea365dfd1dad7061410 (patch)
treedf0be801ef2ce2c6679980f6082456ff1b121967 /src/compiler/scala/tools/nsc/typechecker/StdAttachments.scala
parentd056439a2762b342f66759de654f0dadb01f5e9a (diff)
downloadscala-17992f672f7d5663654a1ea365dfd1dad7061410.tar.gz
scala-17992f672f7d5663654a1ea365dfd1dad7061410.tar.bz2
scala-17992f672f7d5663654a1ea365dfd1dad7061410.zip
SI-8947 Additional layers of defence against EmptyTree mutation
As suggested in review: - Use `abort` rather than `{error; EmptyTree} when we hit an error in reification or tag materialization. - Explicitly avoid adding the `MacroExpansionAttachment` to the macro expansion if it an `EmptyTree` - Emit a `-Xdev` warning if any other code paths find a way to mutate attachments in places they shouldn't.
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/StdAttachments.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/StdAttachments.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/StdAttachments.scala b/src/compiler/scala/tools/nsc/typechecker/StdAttachments.scala
index 57f27a05fd..ea44b9dc39 100644
--- a/src/compiler/scala/tools/nsc/typechecker/StdAttachments.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/StdAttachments.scala
@@ -61,7 +61,7 @@ trait StdAttachments {
val metadata = MacroExpansionAttachment(expandee, expanded)
expandee updateAttachment metadata
expanded match {
- case expanded: Tree => expanded updateAttachment metadata
+ case expanded: Tree if !expanded.isEmpty => expanded updateAttachment metadata
case _ => // do nothing
}
}