@@ -4110,24 +4110,33 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
4110
4110
/** Report an error message at the given position */
4111
4111
def error (msg : String , pos : Position ): Unit
4112
4112
4113
- /** Report an error at the position of the macro expansion and throws a StopMacroExpansion */
4113
+ /** Report an error at the position of the macro expansion and throw a StopMacroExpansion */
4114
4114
def throwError (msg : String ): Nothing
4115
4115
4116
4116
/** Report an error at the position of `expr` */
4117
4117
def throwError (msg : String , expr : Expr [Any ]): Nothing
4118
4118
4119
- /** Report an error message at the given position and throws a StopMacroExpansion */
4119
+ /** Report an error message at the given position and throw a StopMacroExpansion */
4120
4120
def throwError (msg : String , pos : Position ): Nothing
4121
4121
4122
4122
/** Report a warning at the position of the macro expansion */
4123
4123
def warning (msg : String ): Unit
4124
4124
4125
- /** Report a warning at the on the position of `expr` */
4125
+ /** Report a warning at the position of `expr` */
4126
4126
def warning (msg : String , expr : Expr [Any ]): Unit
4127
4127
4128
- /** Report an warning message at the given position */
4128
+ /** Report a warning message at the given position */
4129
4129
def warning (msg : String , pos : Position ): Unit
4130
4130
4131
+ /** Report an info at the position of the macro expansion */
4132
+ def info (msg : String ): Unit
4133
+
4134
+ /** Report an info message at the position of `expr` */
4135
+ def info (msg : String , expr : Expr [Any ]): Unit
4136
+
4137
+ /** Report an info message at the given position */
4138
+ def info (msg : String , pos : Position ): Unit
4139
+
4131
4140
}
4132
4141
4133
4142
0 commit comments