~zorba-coders/zorba/hof-merge

« back to all changes in this revision

Viewing changes to src/compiler/parsetree/parsenode_print_xquery_visitor.cpp

  • Committer: Markos Zaharioudakis
  • Date: 2013-03-25 15:11:52 UTC
  • mfrom: (10632.1.679 zorba)
  • Revision ID: markos_za@yahoo.com-20130325151152-fh98ryulrdd0he8l
mergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1713
1713
    DEFAULT_END_VISIT (StringLiteral);
1714
1714
 
1715
1715
 
 
1716
    void* begin_visit(const BooleanLiteral& n)
 
1717
    {
 
1718
      os << "\"" << n.get_boolval() << '"';
 
1719
      return 0;
 
1720
    }
 
1721
    DEFAULT_END_VISIT (BooleanLiteral);
 
1722
 
 
1723
 
 
1724
    void* begin_visit(const NullLiteral& n)
 
1725
    {
 
1726
      os << "\"null\"";
 
1727
      return 0;
 
1728
    }
 
1729
    DEFAULT_END_VISIT (NullLiteral);
 
1730
 
 
1731
 
1716
1732
    void* begin_visit(const StringConcatExpr& n)
1717
1733
    {
1718
1734
      n.get_left_expr()->accept(*this);
2037
2053
  DEFAULT_VISIT (FTWordsValue);
2038
2054
 
2039
2055
  /* JSON-related */
 
2056
  DEFAULT_VISIT (JSONObjectLookup);
 
2057
 
2040
2058
  DEFAULT_VISIT (JSONArrayConstructor);
2041
2059
 
2042
2060
  DEFAULT_VISIT (JSONObjectConstructor);