Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Create proxy functions for all functions in an imported P5 module.
This allows for calling package functions using their fully qualified name: use Test::More:from<Perl5>; Test::More::ok(1); Test::More::done_testing; Method call syntax now does real package method calls: use Data::Dumper:from<Perl5>; Data::Dumper.Dump([1]);
- Loading branch information
Showing
3 changed files
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,6 @@ use Inline::Perl5; | |
|
|
||
| use Test::More:from<Perl5> <tests 1>; | ||
|
|
||
| Test::More.ok(1); | ||
| Test::More::ok(1); | ||
|
|
||
| # vim: ft=perl6 | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters