Skip to content

Commit

Permalink
More Core work
Browse files Browse the repository at this point in the history
  • Loading branch information
bacek committed Dec 16, 2008
1 parent 2869025 commit 18b7bbf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions XQuery/Core/Creator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class XQuery::Core::Creator {
};

method process_expr_single($ast) {
self.trace('process_expr_single');
self.trace('process_expr_single ' ~$ast.WHAT);
=begin cut
# it doesn't work in Rakudo.
given $ast {
Expand Down Expand Up @@ -191,7 +191,9 @@ class XQuery::Core::Creator {

method process_primary_expr($node) {
self.trace('process_primary_expr ');
self.process_literal($node);
#self.process_literal($node);
if ($node<Literal>) { self.process_literal($node<Literal>) }
else { die "Not implemented" }
};

method process_literal($node) {
Expand Down

0 comments on commit 18b7bbf

Please sign in to comment.