Renaming reporter_message to report_info.

Same change internally.
This commit is contained in:
Robin Sommer 2011-07-07 08:43:29 -07:00
parent eb0580c622
commit df1b2f922b
14 changed files with 34 additions and 34 deletions

View file

@ -5,10 +5,10 @@ module Reporter;
#include "NetVar.h"
%%}
function Reporter::message%(msg: string%): bool
function Reporter::info%(msg: string%): bool
%{
reporter->PushLocation(frame->GetCall()->GetLocationInfo());
reporter->Message("%s", msg->CheckString());
reporter->Info("%s", msg->CheckString());
reporter->PopLocation();
return new Val(1, TYPE_BOOL);
%}