OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
Public Member Functions | Private Member Functions | Private Attributes | List of all members
WhileStatement Class Reference

While statement. More...

#include <WhileStatement.h>

Inheritance diagram for WhileStatement:
Inheritance graph
[legend]
Collaboration diagram for WhileStatement:
Collaboration graph
[legend]

Public Member Functions

 WhileStatement (const Parser &, TokenStream &)
 Constructor. More...
 
virtual ~WhileStatement ()
 
virtual void execute (const Parser &)
 Execute. More...
 
- Public Member Functions inherited from Statement
 Statement (const std::string &name, int line)
 Constructor. More...
 
 Statement (const std::string &name, TokenList &)
 Constructor. More...
 
virtual ~Statement ()
 
void append (const Token &)
 Append a token. More...
 
bool atEnd () const
 Test for end of command. More...
 
bool boolean (bool &value)
 Return boolean value. More...
 
bool delimiter (char c)
 Test for delimiter. More...
 
bool delimiter (const char *s)
 Test for delimiter choice. More...
 
virtual void execute (const Parser &)=0
 Execute. More...
 
TokengetCurrent ()
 Return current token and skip it. More...
 
bool integer (int &value)
 Return signed integer. More...
 
bool integer (unsigned &value)
 Return unsigned integer. More...
 
bool keyword (const char *s)
 Test for keyword. More...
 
bool real (double &value)
 Return real value. More...
 
bool str (std::string &value)
 Return string value. More...
 
bool word (std::string &value)
 Return word value. More...
 
void mark ()
 Mark position in command. More...
 
void restore ()
 Return to marked position. More...
 
void start ()
 Return to start. More...
 
void skip ()
 Skip. More...
 
unsigned int position () const
 Return current character number in line. More...
 
virtual void print (std::ostream &os) const
 Print statement. More...
 
virtual void printWhere (Inform &msg, bool withToken) const
 Print position. More...
 
std::string str () const
 

Private Member Functions

 WhileStatement ()
 
 WhileStatement (const WhileStatement &)
 
void operator= (const WhileStatement &)
 

Private Attributes

Statementwhile_block
 

Additional Inherited Members

- Public Types inherited from Statement
typedef std::list< TokenTokenList
 The type of the enclosed token list. More...
 
- Protected Attributes inherited from Statement
int stat_line
 
std::string buffer_name
 
TokenList tokens
 
TokenList::iterator curr
 
TokenList::iterator keep
 

Detailed Description

While statement.

Definition at line 35 of file WhileStatement.h.

Constructor & Destructor Documentation

◆ WhileStatement() [1/3]

WhileStatement::WhileStatement ( const Parser parser,
TokenStream is 
)

Constructor.

Definition at line 36 of file WhileStatement.cpp.

References Statement::append(), Token::isDel(), Token::isEOF(), Token::isKey(), Parser::readStatement(), TokenStream::readToken(), and while_block.

Here is the call graph for this function:

◆ ~WhileStatement()

WhileStatement::~WhileStatement ( )
virtual

Definition at line 67 of file WhileStatement.cpp.

References while_block.

◆ WhileStatement() [2/3]

WhileStatement::WhileStatement ( )
private

◆ WhileStatement() [3/3]

WhileStatement::WhileStatement ( const WhileStatement )
private

Member Function Documentation

◆ execute()

void WhileStatement::execute ( const Parser parser)
virtual

◆ operator=()

void WhileStatement::operator= ( const WhileStatement )
private

Member Data Documentation

◆ while_block

Statement* WhileStatement::while_block
private

Definition at line 56 of file WhileStatement.h.

Referenced by execute(), WhileStatement(), and ~WhileStatement().


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