Help for this page

Select Code to Download


  1. or download this
    sub parse {
        my ($self, $file_name) = @_;
    ...
            croak "$file_name doesn't exist";
        }
    }
    
  2. or download this
    ok($xbrl->parse($incoming_file));
    
  3. or download this
                sub parse {
        my ($self, $file_name) = @_;
        $self->{'_xbrl_file'} = $file_name;
    ...
            croak "$file_name doesn't exist";
        }
    }