Author: simon Date: Sat Jan 24 14:36:28 2009 New Revision: 35971 Modified: branches/strings/pseudocode/ParrotString.pm
Log: Work around current Rakudo idiosyncrasies. Modified: branches/strings/pseudocode/ParrotString.pm ============================================================================== --- branches/strings/pseudocode/ParrotString.pm (original) +++ branches/strings/pseudocode/ParrotString.pm Sat Jan 24 14:36:28 2009 @@ -6,14 +6,14 @@ has $.flags is rw; has $.bufused is rw; has $.hashval is rw; - has ParrotString::Encoding $.encoding is rw; - has ParrotString::Charset $.charset is rw; + has $.encoding is rw; + has $.charset is rw; has $.normalization is rw; }; use Charsets; -use Encodings; use Normalizations; +use Encodings; ## COW stuff sub Parrot_string_new_COW($src) { ... }