diff options
| author | Schuyler Eldridge | 2019-02-18 12:27:14 -0500 |
|---|---|---|
| committer | Schuyler Eldridge | 2019-05-13 12:35:24 -0400 |
| commit | 86530051191b47f852d35a61e86143f89b53cdd9 (patch) | |
| tree | d0eb97809c3014ee9dd5076f6663d62cd0406eb5 /chiselFrontend/src/main/scala/chisel3/core/Data.scala | |
| parent | 9706f1a332ac8e2e644240bf351b431b4d1955fe (diff) | |
Fix miscellaneous Scaladoc warnings
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'chiselFrontend/src/main/scala/chisel3/core/Data.scala')
| -rw-r--r-- | chiselFrontend/src/main/scala/chisel3/core/Data.scala | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/core/Data.scala b/chiselFrontend/src/main/scala/chisel3/core/Data.scala index 51ad154f..3ce79786 100644 --- a/chiselFrontend/src/main/scala/chisel3/core/Data.scala +++ b/chiselFrontend/src/main/scala/chisel3/core/Data.scala @@ -498,7 +498,7 @@ abstract class Data extends HasId with NamedComponent with SourceInfoDoc { // sc case Some(BundleLitBinding(litMap)) => None // this API does not support Bundle literals case _ => None } - + def isLit(): Boolean = litArg.isDefined /** @@ -680,7 +680,7 @@ object WireDefault { x } - /** Construct a [[Wire]] with a type template and a [[DontCare]] default + /** Construct a [[Wire]] with a type template and a [[chisel3.DontCare]] default * @param t The type template used to construct this [[Wire]] * @param init The default connection to this [[Wire]], can only be [[DontCare]] * @note This is really just a specialized form of `apply[T <: Data](t: T, init: T): T` with [[DontCare]] as `init` @@ -740,4 +740,3 @@ private[chisel3] object DontCare extends Element { // DontCare's only match themselves. private[core] def typeEquivalent(that: chisel3.core.Data): Boolean = that == DontCare } - |
