compiler*()

Four system functions are available to emit compiler messages: compilerError(), compilerHint(), compilerWarning() and compilerMessage(). Each function takes one String parameter, and emits the appropriate message during compilation. The function has no effect at runtime.

method Foo;
begin
  compilerWarning("ToDo: this function doesn't handle the Bar case yet.");
end;
public void Foo()
{
    compilerWarning("ToDo: this function doesn't handle the Bar case yet.");
}
public func Foo() {
    compilerWarning("ToDo: this function doesn't handle the Bar case yet.")
}
public void Foo(){
    compilerWarning("ToDo: this function doesn't handle the Bar case yet.");
}

See Also