Skip to content

Commit

Permalink
[pmc2c] Skip generating orig wrappers for unimplemented methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Reini Urban committed Dec 10, 2012
1 parent 4e3c897 commit 815831f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/Parrot/Pmc2c/PMC.pm
Expand Up @@ -737,6 +737,9 @@ sub post_method_gen {
# Skip methods with manual WBs.
next if $self->vtable_method_has_manual_wb($name);

# Skip unimplemented methods
next if $self->unimplemented_vtable($name);

$method = $self->get_method($name);

#warn "Rewriting " . $self->name . "." . $name;
Expand Down

0 comments on commit 815831f

Please sign in to comment.