Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove some dead code.
Couldn't possibly have worked, since it calls a method that doesn't
exist.
  • Loading branch information
jnthn committed Feb 26, 2013
1 parent 12de2c1 commit 906d7fa
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/HLL/Compiler.pm
Expand Up @@ -175,14 +175,6 @@ class HLL::Compiler does HLL::Backend::Default {

method config() { %!config };

method load_module($name) {
my $base := nqp::join('/', self.parse_name($name));
my $loaded := 0;
try { nqp::loadbytecode("$base.pbc"); $loaded := 1 };
unless $loaded { nqp::loadbytecode("$base.pir"); $loaded := 1 }
self.get_module($name);
}

method autoprint($value) {
self.interactive_result($value)
unless nqp::tellfh(nqp::getstdout()) > $*AUTOPRINTPOS;
Expand Down

0 comments on commit 906d7fa

Please sign in to comment.