[svn:parrot] r39646 - in branches/pmc_pct/compilers/pmcc/src: . parser
cotto at svn.parrot.org
cotto at svn.parrot.org
Thu Jun 18 07:57:31 UTC 2009
Author: cotto
Date: Thu Jun 18 07:57:30 2009
New Revision: 39646
URL: https://trac.parrot.org/parrot/changeset/39646
Log:
[pmcc] unfreeze -> thaw
Modified:
branches/pmc_pct/compilers/pmcc/src/nodes.pir
branches/pmc_pct/compilers/pmcc/src/parser/actions.pm
Modified: branches/pmc_pct/compilers/pmcc/src/nodes.pir
==============================================================================
--- branches/pmc_pct/compilers/pmcc/src/nodes.pir Thu Jun 18 07:55:16 2009 (r39645)
+++ branches/pmc_pct/compilers/pmcc/src/nodes.pir Thu Jun 18 07:57:30 2009 (r39646)
@@ -147,13 +147,13 @@
.end
-=item C<unfreeze_attrs>
+=item C<thaw_pmc_attrs>
unserialize a PMC's frozen ATTRs and add them to this PMC.
=cut
-.sub 'unfreeze_pmc_attrs' :method
+.sub 'thaw_pmc_attrs' :method
.param string pmcname
Modified: branches/pmc_pct/compilers/pmcc/src/parser/actions.pm
==============================================================================
--- branches/pmc_pct/compilers/pmcc/src/parser/actions.pm Thu Jun 18 07:55:16 2009 (r39645)
+++ branches/pmc_pct/compilers/pmcc/src/parser/actions.pm Thu Jun 18 07:57:30 2009 (r39646)
@@ -44,7 +44,7 @@
#say("traits " ~$/);
if $key eq 'extends' {
$?PMC.parents().push(~$<identifier>);
- $?PMC.unfreeze_pmc_attrs(~$<identifier>);
+ $?PMC.thaw_pmc_attrs(~$<identifier>);
}
elsif $key eq 'provides' {
$?PMC.provides().push(~$<identifier>);
More information about the parrot-commits
mailing list