File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -167,19 +167,21 @@ static void static_verifier_console(
167
167
if (last_function_id != result.function_id )
168
168
{
169
169
if (!last_function_id.empty ())
170
- m.result () << ' \n ' ;
170
+ m.status () << ' \n ' ;
171
171
last_function_id = result.function_id ;
172
172
const auto &symbol = ns.lookup (last_function_id);
173
- m.result () << " ******** Function " << symbol.display_name ();
173
+ m.status () << messaget::underline << " Function " << symbol.display_name ();
174
174
function_file = symbol.location .get_file ();
175
175
if (!function_file.empty ())
176
- m.result () << ' ' << function_file;
176
+ m.status () << ' ' << function_file;
177
177
if (!symbol.location .get_line ().empty ())
178
- m.result () << ' :' << symbol.location .get_line ();
179
- m.result () << ' \n ' ;
178
+ m.status () << ' :' << symbol.location .get_line ();
179
+ m.status () << messaget::reset << messaget::eom ;
180
180
}
181
181
182
- m.result () << ' [' << result.source_location .get_property_id () << ' ]' ;
182
+ m.result () << messaget::faint << ' ['
183
+ << result.source_location .get_property_id () << ' ]'
184
+ << messaget::reset;
183
185
184
186
if (
185
187
!result.source_location .get_file ().empty () &&
You can’t perform that action at this time.
0 commit comments