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
Rename Niecza::Interoperability to Niecza.
Make Niecza a full Module::Build using module with an XS part.
- Loading branch information
Showing
11 changed files
with
47 additions
and
171 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
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 |
|---|---|---|
| @@ -1,14 +1,14 @@ | ||
| Build.PL | ||
| Changes | ||
| ignore.txt | ||
| lib/Niecza.pm | ||
| lib/Niecza.xs | ||
| lib/Niecza/Helpers.pm | ||
| lib/typemap | ||
| MANIFEST This list of files | ||
| ppport.h | ||
| README | ||
| t/00-load.t | ||
| t/01-object.t | ||
| t/02-feature.t | ||
| t/boilerplate.t | ||
| t/manifest.t | ||
| t/pod-coverage.t | ||
| t/pod.t |
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
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 |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| package Niecza::Helpers; | ||
| use Package::Stash; | ||
| my $id = 0; | ||
| sub use_module { | ||
| my ($module) = @_; | ||
| my $stash = Package::Stash->new('main');#'Niecza::Stash::Interopability::TMP'.$id++); | ||
| eval("package ".$stash->name.";use $module;"); | ||
| warn $@ if $@; | ||
| my @subs = $stash->list_all_symbols('CODE'); | ||
| for my $symbol (@subs) { | ||
| #say "importing sub $symbol from $module"; | ||
| } | ||
| $subs[0]; | ||
| } | ||
| 1; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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