diff options
Diffstat (limited to 'src/main/scala/chisel3/package.scala')
| -rw-r--r-- | src/main/scala/chisel3/package.scala | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/src/main/scala/chisel3/package.scala b/src/main/scala/chisel3/package.scala index ef71e38c..a5d782ea 100644 --- a/src/main/scala/chisel3/package.scala +++ b/src/main/scala/chisel3/package.scala @@ -293,21 +293,10 @@ package object chisel3 { // scalastyle:ignore package.object.name def range(args: Any*): (NumericBound[Int], NumericBound[Int]) = macro chisel3.internal.RangeTransform.apply } - import scala.language.experimental.macros - import scala.annotation.StaticAnnotation import scala.annotation.compileTimeOnly - @compileTimeOnly("enable macro paradise to expand macro annotations") - class dump extends StaticAnnotation { - def macroTransform(annottees: Any*): Any = macro chisel3.internal.naming.DebugTransforms.dump - } - @compileTimeOnly("enable macro paradise to expand macro annotations") - class treedump extends StaticAnnotation { - def macroTransform(annottees: Any*): Any = macro chisel3.internal.naming.DebugTransforms.treedump - } - @compileTimeOnly("enable macro paradise to expand macro annotations") - class chiselName extends StaticAnnotation { - def macroTransform(annottees: Any*): Any = macro chisel3.internal.naming.NamingTransforms.chiselName - } + class dump extends chisel3.internal.naming.dump + class treedump extends chisel3.internal.naming.treedump + class chiselName extends chisel3.internal.naming.chiselName } } |
