Commit 94a749f4 authored by Jack Koenig's avatar Jack Koenig
Browse files

Eval deprecation warning in @chiselRuntimeDeprecated

This ensures that Expressions that are not String literals will be
printed as String literals instead of Stringified ASTs. For example:

@chiselRuntimeDeprecated
@deprecated("This is " + "deprecated", "1.0")
def func() = ...

Formerly would print the runtime warning as:
"This is".$plus("deprecated")

It now prints the same as the Scala deprecation warning:
"This is deprecated"
parent d65013c4
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment