This repository has been archived by the owner on Feb 3, 2021. It is now read-only.
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
Start to build the HOW bits as part of building NQP. Means that one c…
…an now write knowhows with attributes in NQP without having to declare an attribute meta-object up front, plus the fledgeling ClassHOW is also getting built.
- Loading branch information
Showing
3 changed files
with
43 additions
and
2 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 |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| #!/usr/bin/perl | ||
| # Copyright (C) 2010, The Perl Foundation. | ||
| # $Id$ | ||
|
|
||
| use strict; | ||
| use warnings; | ||
|
|
||
| my @files = @ARGV; | ||
|
|
||
| print <<"END_SETTING"; | ||
| #! nqp | ||
|
|
||
| # This file automatically generated by $0 in the nqp-rx project. | ||
|
|
||
| END_SETTING | ||
|
|
||
| foreach my $file (@files) { | ||
| print "# From $file\n\n"; | ||
| open(my $fh, "<", $file) or die $!; | ||
| local $/; | ||
| my $x = <$fh>; | ||
| close $fh; | ||
| print $x; | ||
| } | ||
|
|
||
| print "\n# vim: set ft=perl6 nomodifiable :\n"; |
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