DBIx-Perlish

 view release on metacpan or  search on metacpan

lib/DBIx/Perlish/Parse.pm  view on Meta::CPAN

use warnings;
use strict;

our $DEVEL;
our $_cover;

use B;
use Carp;
use Devel::Caller qw(caller_cv);

sub _o($) { ref($_[0]) . sprintf (" (0x%x)", ${$_[0]}) . ( $_[0]->can('name') ? (" " . $_[0]->name) : '' ) }

sub bailout
{
	my ($S, @rest) = @_;
	if ($DEVEL) {
		confess @rest;
	} else {
		my $args = join '', @rest;
		$args = "Something's wrong" unless $args;
		my $file = $S->{file};



( run in 2.424 seconds using v1.01-cache-2.11-cpan-364913b4093 )