view src/parallel_execution/examples/DebughelloWorld/meta.pm @ 1015:e6778c866876

add DebugWorker and DebugTaskManager
author Takato Matsuoka <t.matsuoka@cr.ie.u-ryukyu.ac.jp>
date Tue, 18 Jan 2022 19:54:28 +0900
parents
children
line wrap: on
line source

package meta;
use strict;
use warnings;

sub replaceMeta {
  return (
    [qr/HelloImpl/ => \&generatedebugMeta],
  );
}

#my ($currentCodeGearName, $context, $next) = @_;

sub generatedebugMeta {
  my ($context, $next) = @_;
  return "goto debugMeta($context, $next);";
}
1;