Skip to content

Commit

Permalink
[SymbolTable] Fix lookup of type object with "::" in their names, jnt…
Browse files Browse the repository at this point in the history
…hn++
  • Loading branch information
Tadeusz Sośnierz committed Jul 8, 2011
1 parent b7d5fed commit 82b7267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/SymbolTable.pm
Expand Up @@ -722,7 +722,7 @@ class Perl6::SymbolTable is HLL::Compiler::SerializationContextBuilder {

# Find type object for the box typed we'll create.
# On deserialization, we'll need to look it up too.
my $type_obj := self.find_symbol([$type]);
my $type_obj := self.find_symbol(pir::split('::', $type));
my $type_obj_lookup := self.get_object_sc_ref_past($type_obj);

# Go by the primitive type we're boxing. Need to create
Expand Down

0 comments on commit 82b7267

Please sign in to comment.