Home
last modified time | relevance | path

Searched refs:ClassElementList (Results 1 – 25 of 39) sorted by relevance

12

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/qmljs/parser/
H A Dqmljsparser_p.h99 AST::ClassElementList *ClassElementList; member
H A Dqmljsastvisitor_p.h354 virtual bool visit(ClassElementList *) = 0;
355 virtual void endVisit(ClassElementList *) = 0;
698 bool visit(ClassElementList *) override { return true; } in visit() argument
699 void endVisit(ClassElementList *) override {} in endVisit() argument
H A Dqmljsast.cpp1539 void ClassElementList::accept0(BaseVisitor *visitor) in accept0()
1542 for (ClassElementList *it = this; it && accepted; it = it->next) { in accept0()
1551 ClassElementList *ClassElementList::finish() in finish()
1553 ClassElementList *front = next; in finish()
H A Dqmljsastfwd_p.h146 class ClassElementList; variable
H A Dqmljsparser.cpp3300 …*node = new (pool) AST::ClassDeclaration(stringRef(2), sym(3).Expression, sym(5).ClassElementList); in parse()
3311 … *node = new (pool) AST::ClassExpression(stringRef(2), sym(3).Expression, sym(5).ClassElementList); in parse()
3322 …node = new (pool) AST::ClassDeclaration(QStringView(), sym(2).Expression, sym(4).ClassElementList); in parse()
3332 …*node = new (pool) AST::ClassExpression(QStringView(), sym(2).Expression, sym(4).ClassElementList); in parse()
3375 sym(1).Node = sym(1).ClassElementList->finish(); in parse()
3383 sym(1).ClassElementList = sym(1).ClassElementList->append(sym(2).ClassElementList); in parse()
3392 … AST::ClassElementList *node = new (pool) AST::ClassElementList(sym(1).PatternProperty, false); in parse()
3400 … AST::ClassElementList *node = new (pool) AST::ClassElementList(sym(2).PatternProperty, true); in parse()
H A Dqmljsast_p.h2505 ClassExpression(QStringView n, ExpressionNode *heritage, ClassElementList *elements) in QMLJS_DECLARE_AST_NODE()
2522 ClassElementList *elements;
2534 ClassDeclaration(QStringView n, ExpressionNode *heritage, ClassElementList *elements) in QMLJS_DECLARE_AST_NODE()
2542 class QML_PARSER_EXPORT ClassElementList : public Node
2545 QMLJS_DECLARE_AST_NODE(ClassElementList) in QMLJS_DECLARE_AST_NODE() argument
2547 ClassElementList(PatternProperty *property, bool isStatic) in QMLJS_DECLARE_AST_NODE()
2554 ClassElementList *append(ClassElementList *n) { in append()
2572 ClassElementList *finish();
2575 ClassElementList *next;
H A Dqmljs.g298 AST::ClassElementList *ClassElementList;
4360 …*node = new (pool) AST::ClassDeclaration(stringRef(2), sym(3).Expression, sym(5).ClassElementList);
4372 … *node = new (pool) AST::ClassExpression(stringRef(2), sym(3).Expression, sym(5).ClassElementList);
4395 …*node = new (pool) AST::ClassExpression(QStringView(), sym(2).Expression, sym(4).ClassElementList);
4442 ClassBodyOpt: ClassElementList;
4446 sym(1).Node = sym(1).ClassElementList->finish();
4450 ClassElementList: ClassElement;
4452 ClassElementList: ClassElementList ClassElement;
4457 sym(1).ClassElementList = sym(1).ClassElementList->append(sym(2).ClassElementList);
4467 … AST::ClassElementList *node = new (pool) AST::ClassElementList(sym(1).PatternProperty, false);
[all …]
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/qml/parser/
H A Dqqmljsastvisitor_p.h366 virtual bool visit(ClassElementList *) = 0;
367 virtual void endVisit(ClassElementList *) = 0;
707 bool visit(ClassElementList *) override { return true; } in visit() argument
708 void endVisit(ClassElementList *) override {} in endVisit() argument
H A Dqqmljsast.cpp1500 void ClassElementList::accept0(BaseVisitor *visitor) in accept0()
1503 for (ClassElementList *it = this; it && accepted; it = it->next) { in accept0()
1512 ClassElementList *ClassElementList::finish() in finish()
1514 ClassElementList *front = next; in finish()
H A Dqqmljsastfwd_p.h160 class ClassElementList; variable
H A Dqqmljsast_p.h2478 ClassExpression(const QStringRef &n, ExpressionNode *heritage, ClassElementList *elements) in QQMLJS_DECLARE_AST_NODE()
2495 ClassElementList *elements;
2507 ClassDeclaration(const QStringRef &n, ExpressionNode *heritage, ClassElementList *elements) in QQMLJS_DECLARE_AST_NODE()
2515 class QML_PARSER_EXPORT ClassElementList : public Node
2518 QQMLJS_DECLARE_AST_NODE(ClassElementList) in QQMLJS_DECLARE_AST_NODE() argument
2520 ClassElementList(PatternProperty *property, bool isStatic) in QQMLJS_DECLARE_AST_NODE()
2527 ClassElementList *append(ClassElementList *n) { in append()
2545 ClassElementList *finish();
2548 ClassElementList *next;
H A Dqqmljs.g297 AST::ClassElementList *ClassElementList;
4247 …*node = new (pool) AST::ClassDeclaration(stringRef(2), sym(3).Expression, sym(5).ClassElementList);
4259 … *node = new (pool) AST::ClassExpression(stringRef(2), sym(3).Expression, sym(5).ClassElementList);
4282 … *node = new (pool) AST::ClassExpression(QStringRef(), sym(2).Expression, sym(4).ClassElementList);
4329 ClassBodyOpt: ClassElementList;
4333 sym(1).Node = sym(1).ClassElementList->finish();
4337 ClassElementList: ClassElement;
4339 ClassElementList: ClassElementList ClassElement;
4344 sym(1).ClassElementList = sym(1).ClassElementList->append(sym(2).ClassElementList);
4354 … AST::ClassElementList *node = new (pool) AST::ClassElementList(sym(1).PatternProperty, false);
[all …]
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/qml/parser/
H A Dqqmljsastvisitor_p.h366 virtual bool visit(ClassElementList *) = 0;
367 virtual void endVisit(ClassElementList *) = 0;
707 bool visit(ClassElementList *) override { return true; } in visit() argument
708 void endVisit(ClassElementList *) override {} in endVisit() argument
H A Dqqmljsast.cpp1500 void ClassElementList::accept0(BaseVisitor *visitor) in accept0()
1503 for (ClassElementList *it = this; it && accepted; it = it->next) { in accept0()
1512 ClassElementList *ClassElementList::finish() in finish()
1514 ClassElementList *front = next; in finish()
H A Dqqmljsastfwd_p.h160 class ClassElementList; variable
H A Dqqmljsast_p.h2478 ClassExpression(const QStringRef &n, ExpressionNode *heritage, ClassElementList *elements) in QQMLJS_DECLARE_AST_NODE()
2495 ClassElementList *elements;
2507 ClassDeclaration(const QStringRef &n, ExpressionNode *heritage, ClassElementList *elements) in QQMLJS_DECLARE_AST_NODE()
2515 class QML_PARSER_EXPORT ClassElementList : public Node
2518 QQMLJS_DECLARE_AST_NODE(ClassElementList) in QQMLJS_DECLARE_AST_NODE() argument
2520 ClassElementList(PatternProperty *property, bool isStatic) in QQMLJS_DECLARE_AST_NODE()
2527 ClassElementList *append(ClassElementList *n) { in append()
2545 ClassElementList *finish();
2548 ClassElementList *next;
H A Dqqmljs.g297 AST::ClassElementList *ClassElementList;
4247 …*node = new (pool) AST::ClassDeclaration(stringRef(2), sym(3).Expression, sym(5).ClassElementList);
4259 … *node = new (pool) AST::ClassExpression(stringRef(2), sym(3).Expression, sym(5).ClassElementList);
4282 … *node = new (pool) AST::ClassExpression(QStringRef(), sym(2).Expression, sym(4).ClassElementList);
4329 ClassBodyOpt: ClassElementList;
4333 sym(1).Node = sym(1).ClassElementList->finish();
4337 ClassElementList: ClassElement;
4339 ClassElementList: ClassElementList ClassElement;
4344 sym(1).ClassElementList = sym(1).ClassElementList->append(sym(2).ClassElementList);
4354 … AST::ClassElementList *node = new (pool) AST::ClassElementList(sym(1).PatternProperty, false);
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/jsparagus/js_parser/
H A Des-simplified.esgrammar1211 ClassElementList[?Yield, ?Await]
1215 ClassElementList[Yield, Await] :
1218 ClassElementList[?Yield, ?Await] ClassElement[?Yield, ?Await]
H A Des.esgrammar1109 ClassElementList[?Yield, ?Await]
1111 ClassElementList[Yield, Await] :
1113 ClassElementList[?Yield, ?Await] ClassElement[?Yield, ?Await]
H A Dslash.esgrammar1124 ClassElementList[?Yield, ?Await]
1126 ClassElementList[Yield, Await] :
1128 ClassElementList[?Yield, ?Await] ClassElement[?Yield, ?Await]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/jsparagus/js_parser/
H A Des-simplified.esgrammar1211 ClassElementList[?Yield, ?Await]
1215 ClassElementList[Yield, Await] :
1218 ClassElementList[?Yield, ?Await] ClassElement[?Yield, ?Await]
H A Dslash.esgrammar1124 ClassElementList[?Yield, ?Await]
1126 ClassElementList[Yield, Await] :
1128 ClassElementList[?Yield, ?Await] ClassElement[?Yield, ?Await]
H A Des.esgrammar1109 ClassElementList[?Yield, ?Await]
1111 ClassElementList[Yield, Await] :
1113 ClassElementList[?Yield, ?Await] ClassElement[?Yield, ?Await]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/jsparagus/js_parser/
H A Des-simplified.esgrammar1211 ClassElementList[?Yield, ?Await]
1215 ClassElementList[Yield, Await] :
1218 ClassElementList[?Yield, ?Await] ClassElement[?Yield, ?Await]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/jsparagus/js_parser/
H A Des-simplified.esgrammar1207 ClassElementList[?Yield, ?Await]
1211 ClassElementList[Yield, Await] :
1214 ClassElementList[?Yield, ?Await] ClassElement[?Yield, ?Await]

12