summaryrefslogtreecommitdiffstats
path: root/apps/uscxml-browser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/uscxml-browser.cpp')
-rw-r--r--apps/uscxml-browser.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/uscxml-browser.cpp b/apps/uscxml-browser.cpp
index 1b9df1b..0e7b22b 100644
--- a/apps/uscxml-browser.cpp
+++ b/apps/uscxml-browser.cpp
@@ -182,6 +182,15 @@ int main(int argc, char** argv) {
try {
Interpreter interpreter = Interpreter::fromURI(documentURL);
if (interpreter) {
+
+ if (options.checking) {
+ std::list<InterpreterIssue> issues = interpreter.validate();
+ for (std::list<InterpreterIssue>::iterator issueIter = issues.begin(); issueIter != issues.end(); issueIter++) {
+ std::cout << *issueIter << std::endl;
+ }
+
+ }
+
interpreter.setCmdLineOptions(currOptions->additionalParameters);
interpreter.setCapabilities(options.getCapabilities());