1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef EMPATHY_PARSER_RESOLVER_H
#define EMPATHY_PARSER_RESOLVER_H
#include "parser.h"
namespace empathy::parser
{
class Resolver
{
public:
Resolver( const ptr< Lexer >& lexer, const sema::Context& c ) :
m_lexer( lexer ),
m_context( c )
|
|
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef EMPATHY_PARSE_RESOLVER_H
#define EMPATHY_PARSE_RESOLVER_H
#include "parse.h"
namespace empathy::parse
{
class Resolver
{
public:
Resolver( const ptr< Lexer >& lexer, const sema::Context& c ) :
m_lexer( lexer ),
m_context( c )
|