We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e0d2143 + 173a6fa commit 2279d3fCopy full SHA for 2279d3f
src/compiler/scala/tools/nsc/typechecker/Macros.scala
@@ -85,9 +85,9 @@ trait Macros extends MacroRuntimes with Traces with Helpers {
85
*/
86
case class MacroImplBinding(
87
// Is this macro impl a bundle (a trait extending *box.Macro) or a vanilla def?
88
- val isBundle: Boolean,
+ isBundle: Boolean,
89
// Is this macro impl blackbox (i.e. having blackbox.Context in its signature)?
90
- val isBlackbox: Boolean,
+ isBlackbox: Boolean,
91
// Java class name of the class that contains the macro implementation
92
// is used to load the corresponding object with Java reflection
93
className: String,
0 commit comments