@@ -4098,24 +4098,33 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
4098
4098
/** Report an error message at the given position */
4099
4099
def error (msg : String , pos : Position ): Unit
4100
4100
4101
- /** Report an error at the position of the macro expansion and throws a StopMacroExpansion */
4101
+ /** Report an error at the position of the macro expansion and throw a StopMacroExpansion */
4102
4102
def throwError (msg : String ): Nothing
4103
4103
4104
4104
/** Report an error at the position of `expr` */
4105
4105
def throwError (msg : String , expr : Expr [Any ]): Nothing
4106
4106
4107
- /** Report an error message at the given position and throws a StopMacroExpansion */
4107
+ /** Report an error message at the given position and throw a StopMacroExpansion */
4108
4108
def throwError (msg : String , pos : Position ): Nothing
4109
4109
4110
4110
/** Report a warning at the position of the macro expansion */
4111
4111
def warning (msg : String ): Unit
4112
4112
4113
- /** Report a warning at the on the position of `expr` */
4113
+ /** Report a warning at the position of `expr` */
4114
4114
def warning (msg : String , expr : Expr [Any ]): Unit
4115
4115
4116
- /** Report an warning message at the given position */
4116
+ /** Report a warning message at the given position */
4117
4117
def warning (msg : String , pos : Position ): Unit
4118
4118
4119
+ /** Report an info at the position of the macro expansion */
4120
+ def info (msg : String ): Unit
4121
+
4122
+ /** Report an info message at the position of `expr` */
4123
+ def info (msg : String , expr : Expr [Any ]): Unit
4124
+
4125
+ /** Report an info message at the given position */
4126
+ def info (msg : String , pos : Position ): Unit
4127
+
4119
4128
}
4120
4129
4121
4130
0 commit comments