Qt 4.8
Public Functions | Public Variables | List of all members
QScript::AST::PropertyNameAndValueList Class Reference

#include <qscriptast_p.h>

Inheritance diagram for QScript::AST::PropertyNameAndValueList:
QScript::AST::Node

Public Functions

virtual void accept0 (Visitor *visitor)
 
PropertyNameAndValueListfinish ()
 
 PropertyNameAndValueList (PropertyName *n, ExpressionNode *v)
 
 PropertyNameAndValueList (PropertyNameAndValueList *previous, PropertyName *n, ExpressionNode *v)
 
virtual ~PropertyNameAndValueList ()
 
- Public Functions inherited from QScript::AST::Node
void accept (Visitor *visitor)
 
virtual BinaryExpressionbinaryExpressionCast ()
 
virtual ExpressionNodeexpressionCast ()
 
 Node ()
 
virtual StatementstatementCast ()
 
virtual ~Node ()
 

Public Variables

PropertyNamename
 
PropertyNameAndValueListnext
 
ExpressionNodevalue
 
- Public Variables inherited from QScript::AST::Node
int endColumn
 
int endLine
 
Kind kind
 
int startColumn
 
int startLine
 

Additional Inherited Members

- Public Types inherited from QScript::AST::Node
enum  Kind {
  Kind_Node, Kind_ExpressionNode, Kind_Statement, Kind_ThisExpression,
  Kind_IdentifierExpression, Kind_NullExpression, Kind_TrueLiteral, Kind_FalseLiteral,
  Kind_NumericLiteral, Kind_StringLiteral, Kind_RegExpLiteral, Kind_ArrayLiteral,
  Kind_ObjectLiteral, Kind_ElementList, Kind_Elision, Kind_PropertyNameAndValueList,
  Kind_PropertyName, Kind_IdentifierPropertyName, Kind_StringLiteralPropertyName, Kind_NumericLiteralPropertyName,
  Kind_ArrayMemberExpression, Kind_FieldMemberExpression, Kind_NewMemberExpression, Kind_NewExpression,
  Kind_CallExpression, Kind_ArgumentList, Kind_PostIncrementExpression, Kind_PostDecrementExpression,
  Kind_DeleteExpression, Kind_VoidExpression, Kind_TypeOfExpression, Kind_PreIncrementExpression,
  Kind_PreDecrementExpression, Kind_UnaryPlusExpression, Kind_UnaryMinusExpression, Kind_TildeExpression,
  Kind_NotExpression, Kind_BinaryExpression, Kind_ConditionalExpression, Kind_Expression,
  Kind_Block, Kind_StatementList, Kind_VariableStatement, Kind_VariableDeclarationList,
  Kind_VariableDeclaration, Kind_EmptyStatement, Kind_ExpressionStatement, Kind_IfStatement,
  Kind_DoWhileStatement, Kind_WhileStatement, Kind_ForStatement, Kind_LocalForStatement,
  Kind_ForEachStatement, Kind_LocalForEachStatement, Kind_ContinueStatement, Kind_BreakStatement,
  Kind_ReturnStatement, Kind_WithStatement, Kind_SwitchStatement, Kind_CaseBlock,
  Kind_CaseClauses, Kind_CaseClause, Kind_DefaultClause, Kind_LabelledStatement,
  Kind_ThrowStatement, Kind_TryStatement, Kind_Catch, Kind_Finally,
  Kind_FunctionDeclaration, Kind_FunctionExpression, Kind_FormalParameterList, Kind_FunctionBody,
  Kind_Program, Kind_SourceElements, Kind_SourceElement, Kind_FunctionSourceElement,
  Kind_StatementSourceElement, Kind_DebuggerStatement
}
 
- Static Public Functions inherited from QScript::AST::Node
static void acceptChild (Node *node, Visitor *visitor)
 

Detailed Description

Definition at line 419 of file qscriptast_p.h.

Constructors and Destructors

◆ PropertyNameAndValueList() [1/2]

QScript::AST::PropertyNameAndValueList::PropertyNameAndValueList ( PropertyName n,
ExpressionNode v 
)
inline

◆ PropertyNameAndValueList() [2/2]

QScript::AST::PropertyNameAndValueList::PropertyNameAndValueList ( PropertyNameAndValueList previous,
PropertyName n,
ExpressionNode v 
)
inline

Definition at line 426 of file qscriptast_p.h.

426  :
427  name (n), value (v)
428  {
430  next = previous->next;
431  previous->next = this;
432  }
PropertyNameAndValueList * next
Definition: qscriptast_p.h:448

◆ ~PropertyNameAndValueList()

virtual QScript::AST::PropertyNameAndValueList::~PropertyNameAndValueList ( )
inlinevirtual

Definition at line 434 of file qscriptast_p.h.

434 {}

Functions

◆ accept0()

void QScript::AST::PropertyNameAndValueList::accept0 ( Visitor visitor)
virtual

Implements QScript::AST::Node.

Definition at line 168 of file qscriptast.cpp.

169 {
170  if (visitor->visit(this)) {
172  do {
173  acceptChild(it->name, visitor);
174  acceptChild(it->value, visitor);
175  it = it->next;
176  } while (it);
177  }
178 
179  visitor->endVisit(this);
180 }
#define it(className, varName)
PropertyNameAndValueList(PropertyName *n, ExpressionNode *v)
Definition: qscriptast_p.h:422
static void acceptChild(Node *node, Visitor *visitor)
Definition: qscriptast_p.h:193

◆ finish()

PropertyNameAndValueList* QScript::AST::PropertyNameAndValueList::finish ( )
inline

Definition at line 438 of file qscriptast_p.h.

Referenced by QScriptParser::parse().

439  {
441  next = 0;
442  return front;
443  }
PropertyNameAndValueList(PropertyName *n, ExpressionNode *v)
Definition: qscriptast_p.h:422
PropertyNameAndValueList * next
Definition: qscriptast_p.h:448

Properties

◆ name

PropertyName* QScript::AST::PropertyNameAndValueList::name

Definition at line 446 of file qscriptast_p.h.

Referenced by accept0().

◆ next

PropertyNameAndValueList* QScript::AST::PropertyNameAndValueList::next

Definition at line 448 of file qscriptast_p.h.

Referenced by accept0(), and PropertyNameAndValueList().

◆ value

ExpressionNode* QScript::AST::PropertyNameAndValueList::value

Definition at line 447 of file qscriptast_p.h.

Referenced by accept0().


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