area51/Support/ScriptCompiler/xsc_codegen_continue_statement.cpp
Andrew Sampson 431f72b93a source
2021-08-27 19:22:41 -07:00

31 lines
1.1 KiB
C++

//==============================================================================
//
// xsc_codegen_continue_statement
//
//==============================================================================
#include "xsc_codegen.hpp"
#include "xsc_tokenizer.hpp"
#include "xsc_errors.hpp"
#include "xsc_symbol_table.hpp"
#include "xsc_ast.hpp"
#include "../ScriptVM/xsc_vm_fileformat.hpp"
#include "../ScriptVM/xsc_vm_instructions.hpp"
//==============================================================================
// Defines
//==============================================================================
//==============================================================================
// EmitContinueStatement
//==============================================================================
void xsc_codegen::EmitContinueStatement( xsc_ast_node* pStatementNode )
{
ASSERT( pStatementNode->NodeType == ast_continue_statement );
// TODO: Emit continue statement
ASSERT( 0 );
}
//==============================================================================