Subject: | An example in Verilog::EditFiles doesn't work |
An example in Verilog::EditFiles, SYNOPSIS section doesn't work.
Trying to run (under Cygwin):
my $split = EditFiles->new(outdir => "processed_rtl",
translate_synthesis => 0,
lint_header => undef,
celldefine => 1,
);
produces the following error:
Can't locate object method "new" via package "EditFiles"
It works with this:
my $split = new Verilog::EditFiles(outdir => "processed_rtl",
translate_synthesis => 0,
lint_header => undef,
celldefine => 1,
);