summaryrefslogtreecommitdiff
path: root/chiselFrontend
diff options
context:
space:
mode:
authorSchuyler Eldridge2019-07-30 17:57:09 -0400
committerSchuyler Eldridge2019-07-31 18:39:37 -0400
commit08918522ff485363f440d549370cc1ec3205d8cd (patch)
treee501b286ac713b8fa0f8f2e11008f2f851f47c6b /chiselFrontend
parent7e657e43cc96f7a42bac2bb580742bdab8f4a67b (diff)
Clarify Module deprecations
This adds a clarification to the deprecation message for RawModule, MultiIOModule, UserModule, and ImplicitModule. While these were technically deprecated "since the beginning of time", this adds a comment that these aliases will be removed in 3.3. Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'chiselFrontend')
-rw-r--r--chiselFrontend/src/main/scala/chisel3/core/package.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/core/package.scala b/chiselFrontend/src/main/scala/chisel3/core/package.scala
index 9ca4f117..27c34950 100644
--- a/chiselFrontend/src/main/scala/chisel3/core/package.scala
+++ b/chiselFrontend/src/main/scala/chisel3/core/package.scala
@@ -62,16 +62,16 @@ package object core {
// These provide temporary compatibility for those who foolishly imported from chisel3.core
@deprecated("Avoid importing from chisel3.core, these are not public APIs and may change at any time. " +
- " Use chisel3.experimental.RawModule instead.", "since the beginning of time")
+ " Use chisel3.experimental.RawModule instead. This alias will be removed in 3.3.", "since the beginning of time")
type RawModule = chisel3.experimental.RawModule
@deprecated("Avoid importing from chisel3.core, these are not public APIs and may change at any time. " +
- "Use chisel3.experimental.MultiIOModule instead.", "since the beginning of time")
+ "Use chisel3.experimental.MultiIOModule instead. This alias will be removed in 3.3.", "since the beginning of time")
type MultiIOModule = chisel3.experimental.MultiIOModule
@deprecated("Avoid importing from chisel3.core, these are not public APIs and may change at any time. " +
- " Use chisel3.experimental.RawModule instead.", "since the beginning of time")
+ " Use chisel3.experimental.RawModule instead. This alias will be removed in 3.3.", "since the beginning of time")
type UserModule = chisel3.experimental.RawModule
@deprecated("Avoid importing from chisel3.core, these are not public APIs and may change at any time. " +
- "Use chisel3.experimental.MultiIOModule instead.", "since the beginning of time")
+ "Use chisel3.experimental.MultiIOModule instead. This alias will be removed in 3.3.", "since the beginning of time")
type ImplicitModule = chisel3.experimental.MultiIOModule
@deprecated("Use the version in chisel3._", "3.2")