11 lines
293 B
C++
11 lines
293 B
C++
#pragma once
|
|
#include <interpret/statement.hpp>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace Interpret
|
|
{
|
|
std::unique_ptr<Statement> ExtractStatement(unsigned const operatorIndex, std::vector<Token::Token> const & tokens);
|
|
|
|
int GetRequiredNumberOfArguments(Token::OperandType const type);
|
|
} |