The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Name

SPVM::Builder::ObjectFileInfo - Object file information

Description

SPVM::Builder::ObjectFileInfo is a object file information.

Fields

Fields of SPVM::Builder::ObjectFileInfo.

compile_info

  my $compile_info = $object_file_info->compile_info;
  $object_file_info->compile_info($compile_info);

Get and set the SPVM::Builder::CompileInfo object.

Class Methods

new

  my $object_file_info = SPVM::Builder::ObjectFileInfo->new;

Instance Methods

to_string

  my $object_file = $object_file_info->to_string;

Get the object file name. This is same as $object_file-compile_info->output_file>.

Operators

SPVM::BlessedObject::String overloads the following operators.

bool

  my $bool = !!$object_file_info;
  

Always true.

stringify

  my $object_file_name = "$object_file_info";
  

Alias for "to_string".