Qt 4.8
Public Functions | Public Variables | List of all members
QDeclarativeJS::AST::FormalParameterList Class Reference

#include <qdeclarativejsast_p.h>

Inheritance diagram for QDeclarativeJS::AST::FormalParameterList:
QDeclarativeJS::AST::Node

Public Functions

virtual void accept0 (Visitor *visitor)
 
FormalParameterListfinish ()
 
 FormalParameterList (NameId *n)
 
 FormalParameterList (FormalParameterList *previous, NameId *n)
 
- Public Functions inherited from QDeclarativeJS::AST::Node
void accept (Visitor *visitor)
 
virtual BinaryExpressionbinaryExpressionCast ()
 
virtual ExpressionNodeexpressionCast ()
 
 Node ()
 
virtual StatementstatementCast ()
 
virtual UiObjectMemberuiObjectMemberCast ()
 
virtual ~Node ()
 

Public Variables

SourceLocation commaToken
 
SourceLocation identifierToken
 
NameIdname
 
FormalParameterListnext
 
- Public Variables inherited from QDeclarativeJS::AST::Node
int kind
 

Additional Inherited Members

- Public Types inherited from QDeclarativeJS::AST::Node
enum  Kind {
  Kind_Undefined, Kind_ArgumentList, Kind_ArrayLiteral, 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_FieldMemberExpression, Kind_Finally, Kind_ForEachStatement, Kind_ForStatement,
  Kind_FormalParameterList, Kind_FunctionBody, Kind_FunctionDeclaration, Kind_FunctionExpression,
  Kind_FunctionSourceElement, Kind_IdentifierExpression, Kind_IdentifierPropertyName, Kind_IfStatement,
  Kind_LabelledStatement, Kind_LocalForEachStatement, Kind_LocalForStatement, Kind_NewExpression,
  Kind_NewMemberExpression, Kind_NotExpression, Kind_NullExpression, Kind_NumericLiteral,
  Kind_NumericLiteralPropertyName, Kind_ObjectLiteral, Kind_PostDecrementExpression, Kind_PostIncrementExpression,
  Kind_PreDecrementExpression, Kind_PreIncrementExpression, Kind_Program, Kind_PropertyName,
  Kind_PropertyNameAndValueList, Kind_RegExpLiteral, Kind_ReturnStatement, Kind_SourceElement,
  Kind_SourceElements, Kind_StatementList, Kind_StatementSourceElement, Kind_StringLiteral,
  Kind_StringLiteralPropertyName, Kind_SwitchStatement, 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_UiArrayBinding, Kind_UiImport, Kind_UiImportList,
  Kind_UiObjectBinding, Kind_UiObjectDefinition, Kind_UiObjectInitializer, Kind_UiObjectMemberList,
  Kind_UiArrayMemberList, Kind_UiProgram, Kind_UiParameterList, Kind_UiPublicMember,
  Kind_UiQualifiedId, Kind_UiScriptBinding, Kind_UiSourceElement, Kind_UiFormal,
  Kind_UiFormalList, Kind_UiSignature
}
 
- Static Public Functions inherited from QDeclarativeJS::AST::Node
static void accept (Node *node, Visitor *visitor)
 
static void acceptChild (Node *node, Visitor *visitor)
 

Detailed Description

Definition at line 1933 of file qdeclarativejsast_p.h.

Constructors and Destructors

◆ FormalParameterList() [1/2]

QDeclarativeJS::AST::FormalParameterList::FormalParameterList ( NameId n)
inline

Definition at line 1938 of file qdeclarativejsast_p.h.

◆ FormalParameterList() [2/2]

QDeclarativeJS::AST::FormalParameterList::FormalParameterList ( FormalParameterList previous,
NameId n 
)
inline

Definition at line 1942 of file qdeclarativejsast_p.h.

1942  :
1943  name (n)
1944  {
1945  kind = K;
1946  next = previous->next;
1947  previous->next = this;
1948  }

Functions

◆ accept0()

void QDeclarativeJS::AST::FormalParameterList::accept0 ( Visitor visitor)
virtual

Implements QDeclarativeJS::AST::Node.

Definition at line 737 of file qdeclarativejsast.cpp.

738 {
739  if (visitor->visit(this)) {
740  // ###
741  }
742 
743  visitor->endVisit(this);
744 }

◆ finish()

FormalParameterList* QDeclarativeJS::AST::FormalParameterList::finish ( )
inline

Definition at line 1952 of file qdeclarativejsast_p.h.

Referenced by QDeclarativeJS::Parser::parse().

1953  {
1954  FormalParameterList *front = next;
1955  next = 0;
1956  return front;
1957  }

Properties

◆ commaToken

SourceLocation QDeclarativeJS::AST::FormalParameterList::commaToken

Definition at line 1962 of file qdeclarativejsast_p.h.

Referenced by QDeclarativeJS::Parser::parse().

◆ identifierToken

SourceLocation QDeclarativeJS::AST::FormalParameterList::identifierToken

Definition at line 1963 of file qdeclarativejsast_p.h.

Referenced by QDeclarativeJS::Parser::parse().

◆ name

NameId* QDeclarativeJS::AST::FormalParameterList::name

Definition at line 1960 of file qdeclarativejsast_p.h.

◆ next

FormalParameterList* QDeclarativeJS::AST::FormalParameterList::next

Definition at line 1961 of file qdeclarativejsast_p.h.

Referenced by FormalParameterList().


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