escargot/src/parser/ast/ExpressionStatementNode.h
2016-12-08 14:53:01 +09:00

52 lines
1.7 KiB
C++

/*
* Copyright (c) 2016 Samsung Electronics Co., Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ExpressionStatementNode_h
#define ExpressionStatementNode_h
#include "ExpressionNode.h"
namespace Escargot {
// An expression statement, i.e., a statement consisting of a single expression.
class ExpressionStatementNode : public StatementNode {
public:
friend class ScriptParser;
ExpressionStatementNode(Node* expression)
: StatementNode()
{
m_expression = expression;
}
virtual ASTNodeType type() { return ASTNodeType::ExpressionStatement; }
Node* expression() { return m_expression; }
virtual void generateStatementByteCode(ByteCodeBlock* codeBlock, ByteCodeGenerateContext* context)
{
#ifndef NDEBUG
size_t before = context->m_baseRegisterCount;
#endif
m_expression->generateExpressionByteCode(codeBlock, context);
// codeBlock->pushCode(StoreExecutionResult(ByteCodeLOC(m_loc.index), context->getLastRegisterIndex()), context, this);
context->giveUpRegister();
ASSERT(context->m_baseRegisterCount == before);
}
protected:
Node* m_expression; // expression: Expression;
};
}
#endif