Skip to content

Commit

Permalink
Remove dump_dependency to dump_classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
yuki-kimoto committed Jan 8, 2025
1 parent 25005dc commit cd7e0d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/SPVM/Builder/DependencyAnalyzer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ EOS
return $resource_info;
}

sub dump_dependency {
sub dump_classes {
my ($class, $script_name) = @_;

my $info = SPVM::Builder::ScriptInfo->new(script_name => $script_name);
Expand Down
2 changes: 1 addition & 1 deletion script/spvmdeps
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ elsif ($show_dependency) {
die "[spvmdeps command]--dependency option needs <script_name>."
}

my $dependency = SPVM::Builder::DependencyAnalyzer->dump_dependency($script_name);
my $dependency = SPVM::Builder::DependencyAnalyzer->dump_classes($script_name);

print $dependency;
exit 0;
Expand Down

0 comments on commit cd7e0d0

Please sign in to comment.