aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/backend/jvm/GenBCode.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-04-25 10:08:51 +0200
committerMartin Odersky <odersky@gmail.com>2015-04-25 10:08:51 +0200
commitd94f0b8d7b2bc06c0f0642a714f7940d2f2a9348 (patch)
tree7a329e001122ed6ea6e4580344489ea70a3975e2 /src/dotty/tools/backend/jvm/GenBCode.scala
parent2cab739534ba259efbfabffd417250930e7700a2 (diff)
downloaddotty-d94f0b8d7b2bc06c0f0642a714f7940d2f2a9348.tar.gz
dotty-d94f0b8d7b2bc06c0f0642a714f7940d2f2a9348.tar.bz2
dotty-d94f0b8d7b2bc06c0f0642a714f7940d2f2a9348.zip
Change name of TASTY attribute to TASTY
It does not matter whether it comes from Dotty or elsewhere. We can record the name of the producer in a section of the format itself.
Diffstat (limited to 'src/dotty/tools/backend/jvm/GenBCode.scala')
-rw-r--r--src/dotty/tools/backend/jvm/GenBCode.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/backend/jvm/GenBCode.scala b/src/dotty/tools/backend/jvm/GenBCode.scala
index 999cd4137..221843881 100644
--- a/src/dotty/tools/backend/jvm/GenBCode.scala
+++ b/src/dotty/tools/backend/jvm/GenBCode.scala
@@ -178,7 +178,7 @@ class GenBCodePipeline(val entryPoints: List[Symbol], val int: DottyBackendInter
if (claszSymbol.isClass) // @DarkDimius is this test needed here?
for (pickler <- ctx.compilationUnit.picklers.get(claszSymbol.asClass)) {
val binary = pickler.assembleParts()
- val dataAttr = new CustomAttr(nme.DottyTASTYATTR.toString, binary)
+ val dataAttr = new CustomAttr(nme.TASTYATTR.toString, binary)
plainC.visitAttribute(dataAttr)
}