Home
last modified time | relevance | path

Searched refs:JSONArrayConstructor (Results 1 – 9 of 9) sorted by relevance

/dports/textproc/zorba/zorba-2.7.0/src/compiler/parsetree/
H A Dparsenode_visitor.h279 DECL_PARSENODE_VISITOR_VISIT_MEM_FNS( JSONArrayConstructor );
H A Dparsenodes.cpp5737 JSONArrayConstructor::JSONArrayConstructor( in JSONArrayConstructor() function in zorba::JSONArrayConstructor
5747 JSONArrayConstructor::~JSONArrayConstructor() in ~JSONArrayConstructor()
5753 void JSONArrayConstructor::accept(parsenode_visitor& v) const in accept()
H A Dparsenode_print_xml_visitor.cpp1059 BEGIN_END_TAG(JSONArrayConstructor) in BEGIN_END_TAG()
H A Dparsenodes.h252 class JSONArrayConstructor; variable
6533 class JSONArrayConstructor : public exprnode
6539 JSONArrayConstructor(const QueryLoc&, const exprnode*);
6541 ~JSONArrayConstructor();
H A Dparsenode_print_xquery_visitor.cpp1984 DEFAULT_VISIT (JSONArrayConstructor);
H A Dparsenode_print_xqdoc_visitor.cpp1530 XQDOC_NO_BEGIN_END_TAG (JSONArrayConstructor)
/dports/textproc/zorba/zorba-2.7.0/src/compiler/parser/
H A Dxquery_parser.y877 %type <expr> JSONArrayConstructor
926 %destructor { release_hack( $$ ); } JSONObjectConstructor JSONPairList JSONArrayConstructor JSONSim…
4348 | JSONArrayConstructor
6473 JSONArrayConstructor :
6476 $$ = new JSONArrayConstructor( LOC(@$), NULL );
6480 $$ = new JSONArrayConstructor( LOC(@$), $2 );
H A Dxquery_parser.cpp10356 (yyval.expr) = new JSONArrayConstructor( LOC((yyloc)), NULL ); in parse()
10365 … (yyval.expr) = new JSONArrayConstructor( LOC((yyloc)), (yysemantic_stack_[(3) - (2)].expr) ); in parse()
/dports/textproc/zorba/zorba-2.7.0/src/compiler/translator/
H A Dtranslator.cpp11383 void* begin_visit(const JSONArrayConstructor& v) in begin_visit()
11394 void end_visit(const JSONArrayConstructor& v, void* /*visit_state*/) in end_visit()