Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
QQmlJS::AST::FormalParameterList Class Reference

#include <qqmljsast_p.h>

+ Inheritance diagram for QQmlJS::AST::FormalParameterList:
+ Collaboration diagram for QQmlJS::AST::FormalParameterList:

Public Member Functions

 FormalParameterList (FormalParameterList *previous, PatternElement *e)
 
FormalParameterListappend (FormalParameterList *n)
 
bool isSimpleParameterList ()
 
int length ()
 
bool containsName (const QString &name) const
 
BoundNames formals () const
 
BoundNames boundNames () const
 
void accept0 (BaseVisitor *visitor) override
 
SourceLocation firstSourceLocation () const override
 
SourceLocation lastSourceLocation () const override
 
FormalParameterListfinish (MemoryPool *pool)
 
- Public Member Functions inherited from QQmlJS::AST::Node
 Node ()
 
virtual ~Node ()
 
virtual ExpressionNodeexpressionCast ()
 
virtual BinaryExpressionbinaryExpressionCast ()
 
virtual StatementstatementCast ()
 
virtual UiObjectMemberuiObjectMemberCast ()
 
virtual LeftHandSideExpressionleftHandSideExpressionCast ()
 
virtual PatternpatternCast ()
 
virtual FunctionExpressionasFunctionDefinition ()
 
virtual ClassExpressionasClassDefinition ()
 
bool ignoreRecursionDepth () const
 
void accept (BaseVisitor *visitor)
 
- Public Member Functions inherited from QQmlJS::Managed
 Managed ()=default
 
 ~Managed ()=default
 
voidoperator new (size_t size, MemoryPool *pool)
 
void operator delete (void *)
 
void operator delete (void *, MemoryPool *)
 

Public Attributes

PatternElementelement = nullptr
 
FormalParameterListnext
 
- Public Attributes inherited from QQmlJS::AST::Node
int kind = Kind_Undefined
 

Additional Inherited Members

- Public Types inherited from QQmlJS::AST::Node
enum  Kind {
  Kind_Undefined , Kind_ArgumentList , Kind_ArrayPattern , Kind_ArrayMemberExpression ,
  Kind_BinaryExpression , Kind_Block , Kind_BreakStatement , Kind_CallExpression ,
  Kind_CaseBlock , Kind_CaseClause , Kind_CaseClauses , Kind_Catch ,
  Kind_ConditionalExpression , Kind_ContinueStatement , Kind_DebuggerStatement , Kind_DefaultClause ,
  Kind_DeleteExpression , Kind_DoWhileStatement , Kind_ElementList , Kind_Elision ,
  Kind_EmptyStatement , Kind_Expression , Kind_ExpressionStatement , Kind_FalseLiteral ,
  Kind_SuperLiteral , Kind_FieldMemberExpression , Kind_Finally , Kind_ForEachStatement ,
  Kind_ForStatement , Kind_FormalParameterList , Kind_FunctionBody , Kind_FunctionDeclaration ,
  Kind_FunctionExpression , Kind_ClassExpression , Kind_ClassDeclaration , Kind_IdentifierExpression ,
  Kind_IdentifierPropertyName , Kind_InitializerExpression , Kind_ComputedPropertyName , Kind_IfStatement ,
  Kind_LabelledStatement , Kind_NameSpaceImport , Kind_ImportSpecifier , Kind_ImportsList ,
  Kind_NamedImports , Kind_ImportClause , Kind_FromClause , Kind_ImportDeclaration ,
  Kind_Module , Kind_ExportSpecifier , Kind_ExportsList , Kind_ExportClause ,
  Kind_ExportDeclaration , Kind_NewExpression , Kind_NewMemberExpression , Kind_NotExpression ,
  Kind_NullExpression , Kind_YieldExpression , Kind_NumericLiteral , Kind_NumericLiteralPropertyName ,
  Kind_ObjectPattern , Kind_PostDecrementExpression , Kind_PostIncrementExpression , Kind_PreDecrementExpression ,
  Kind_PreIncrementExpression , Kind_Program , Kind_PropertyDefinitionList , Kind_PropertyGetterSetter ,
  Kind_PropertyName , Kind_PropertyNameAndValue , Kind_RegExpLiteral , Kind_ReturnStatement ,
  Kind_StatementList , Kind_StringLiteral , Kind_StringLiteralPropertyName , Kind_SwitchStatement ,
  Kind_TemplateLiteral , Kind_TaggedTemplate , Kind_TypeExpression , Kind_ThisExpression ,
  Kind_ThrowStatement , Kind_TildeExpression , Kind_TrueLiteral , Kind_TryStatement ,
  Kind_TypeOfExpression , Kind_UnaryMinusExpression , Kind_UnaryPlusExpression , Kind_VariableDeclaration ,
  Kind_VariableDeclarationList , Kind_VariableStatement , Kind_VoidExpression , Kind_WhileStatement ,
  Kind_WithStatement , Kind_NestedExpression , Kind_ClassElementList , Kind_PatternElement ,
  Kind_PatternElementList , Kind_PatternProperty , Kind_PatternPropertyList , Kind_Type ,
  Kind_TypeArgument , Kind_TypeAnnotation , Kind_UiArrayBinding , Kind_UiImport ,
  Kind_UiObjectBinding , Kind_UiObjectDefinition , Kind_UiInlineComponent , Kind_UiObjectInitializer ,
  Kind_UiObjectMemberList , Kind_UiArrayMemberList , Kind_UiPragmaValueList , Kind_UiPragma ,
  Kind_UiProgram , Kind_UiParameterList , Kind_UiPropertyAttributes , Kind_UiPublicMember ,
  Kind_UiQualifiedId , Kind_UiScriptBinding , Kind_UiSourceElement , Kind_UiHeaderItemList ,
  Kind_UiEnumDeclaration , Kind_UiEnumMemberList , Kind_UiVersionSpecifier , Kind_UiRequired ,
  Kind_UiAnnotation , Kind_UiAnnotationList
}
 
- Static Public Member Functions inherited from QQmlJS::AST::Node
static void accept (Node *node, BaseVisitor *visitor)
 

Detailed Description

Definition at line 2437 of file qqmljsast_p.h.

Constructor & Destructor Documentation

◆ FormalParameterList()

QQmlJS::AST::FormalParameterList::FormalParameterList ( FormalParameterList * previous,
PatternElement * e )
inline

Definition at line 2442 of file qqmljsast_p.h.

References next.

Member Function Documentation

◆ accept0()

void QQmlJS::AST::FormalParameterList::accept0 ( BaseVisitor * visitor)
overridevirtual

Implements QQmlJS::AST::Node.

Definition at line 1038 of file qqmljsast.cpp.

References QQmlJS::AST::Node::accept(), and it.

+ Here is the call graph for this function:

◆ append()

FormalParameterList * QQmlJS::AST::FormalParameterList::append ( FormalParameterList * n)
inline

Definition at line 2454 of file qqmljsast_p.h.

References next, and next.

◆ boundNames()

BoundNames QQmlJS::AST::FormalParameterList::boundNames ( ) const

Definition at line 1028 of file qqmljsast.cpp.

References it.

◆ containsName()

bool QQmlJS::AST::FormalParameterList::containsName ( const QString & name) const
inline

Definition at line 2491 of file qqmljsast_p.h.

References it.

Referenced by QV4::Compiler::Context::addLocalVar().

+ Here is the caller graph for this function:

◆ finish()

FormalParameterList * QQmlJS::AST::FormalParameterList::finish ( QQmlJS::MemoryPool * pool)

Definition at line 1049 of file qqmljsast.cpp.

References next.

◆ firstSourceLocation()

SourceLocation QQmlJS::AST::FormalParameterList::firstSourceLocation ( ) const
inlineoverridevirtual

Implements QQmlJS::AST::Node.

Definition at line 2507 of file qqmljsast_p.h.

References QQmlJS::AST::PatternElement::firstSourceLocation().

+ Here is the call graph for this function:

◆ formals()

BoundNames QQmlJS::AST::FormalParameterList::formals ( ) const

Definition at line 1007 of file qqmljsast.cpp.

References QQmlJS::AST::BoundName::Declared, formals(), i, QQmlJS::AST::BoundNames::indexOf(), QQmlJS::AST::BoundName::Injected, it, and QString::number().

Referenced by formals(), and QQmlJSImportVisitor::visit().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ isSimpleParameterList()

bool QQmlJS::AST::FormalParameterList::isSimpleParameterList ( )
inline

Definition at line 2460 of file qqmljsast_p.h.

References QQmlJS::AST::PatternElement::bindingTarget, element, QQmlJS::AST::PatternElement::initializer, next, and QQmlJS::AST::PatternElement::type.

Referenced by QV4::Compiler::Context::emitBlockHeader().

+ Here is the caller graph for this function:

◆ lastSourceLocation()

SourceLocation QQmlJS::AST::FormalParameterList::lastSourceLocation ( ) const
inlineoverridevirtual

Implements QQmlJS::AST::Node.

Definition at line 2510 of file qqmljsast_p.h.

References QQmlJS::AST::lastListElement().

+ Here is the call graph for this function:

◆ length()

int QQmlJS::AST::FormalParameterList::length ( )
inline

Member Data Documentation

◆ element

PatternElement* QQmlJS::AST::FormalParameterList::element = nullptr

◆ next


The documentation for this class was generated from the following files: