summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/parser/stack/DocumentHandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/parser/stack/DocumentHandler.cpp b/src/core/parser/stack/DocumentHandler.cpp
index 78629ac..331fb0b 100644
--- a/src/core/parser/stack/DocumentHandler.cpp
+++ b/src/core/parser/stack/DocumentHandler.cpp
@@ -116,7 +116,7 @@ void DocumentChildHandler::pushDocumentField(Handle<Node> parent,
scope().push(field);
// Push all possible tokens onto the stack
- //pushTokens(fieldDescr->getPermittedTokens());
+ pushTokens(fieldDescr->getPermittedTokens(), true);
}
void DocumentChildHandler::popDocumentField()
@@ -126,7 +126,7 @@ void DocumentChildHandler::popDocumentField()
scope().pop(logger());
// Pop the registered tokens from the stack
- //popTokens();
+ popTokens();
}
void DocumentChildHandler::createPath(const NodeVector<Node> &path,