Expression Refactor

- E9 now uses Arg object in place of Term.  This means A3 and E9 are
  now using a common object.
This commit is contained in:
Paul Beckingham 2011-08-20 10:11:24 -04:00
parent 816b07e868
commit 516e368df0
4 changed files with 163 additions and 241 deletions

View file

@ -45,7 +45,6 @@ qx{../src/task rc:bug.rc add one +ordinary};
qx{../src/task rc:bug.rc add two +\@strange};
my $output = qx{../src/task rc:bug.rc long +ordinary};
diag ($output);
like ($output, qr/one/, '+ordinary explicitly included'); # 2
unlike ($output, qr/two/, '@strange implicitly excluded');