Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes to Compiler class, found while making tests
  • Loading branch information
lizmat committed May 19, 2014
1 parent 328c225 commit 09ed71a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/Compiler.pm
@@ -1,7 +1,7 @@
class Compiler does Systemic {
has Str $!release;
has DateTime $!build-date;
has Str $!codename;
has Str $.release;
has DateTime $.build-date;
has Str $.codename;

submethod BUILD (
:$!name = 'rakudo',
Expand Down Expand Up @@ -35,7 +35,7 @@ multi postcircumfix:<{ }> (Compiler $d, "ver" ) {
$d.version
}
multi postcircumfix:<{ }> (Compiler $d, "release-number" ) {
DEPRECATED('$*PERL.compiler.release', :what('$*PERL<compiler><release-number') );
DEPRECATED('$*PERL.compiler.release', :what('$*PERL<compiler><release-number>') );
$d.release
}
multi postcircumfix:<{ }> (Compiler $d, "build-date" ) {
Expand Down

0 comments on commit 09ed71a

Please sign in to comment.