2013-08-10 01:00:05 +00:00
/*
Copyright ( c ) 2013 Microsoft Corporation . All rights reserved .
Released under Apache 2.0 license as described in the file LICENSE .
Author : Leonardo de Moura
*/
# include <atomic>
2013-09-01 23:59:15 +00:00
# include <unordered_set>
2013-09-13 10:35:29 +00:00
# include <vector>
# include <utility>
# include <functional>
2013-09-13 03:04:10 +00:00
# include "util/map.h"
# include "util/sstream.h"
# include "util/exception.h"
# include "kernel/environment.h"
# include "library/expr_pair.h"
# include "library/state.h"
2013-09-13 16:06:46 +00:00
# include "library/all/all.h"
2013-09-13 03:09:35 +00:00
# include "frontends/lean/operator_info.h"
# include "frontends/lean/coercion.h"
# include "frontends/lean/frontend.h"
# include "frontends/lean/notation.h"
# include "frontends/lean/pp.h"
2013-08-10 01:00:05 +00:00
namespace lean {
2013-08-27 03:21:05 +00:00
static std : : vector < bool > g_empty_vector ;
2013-08-10 01:00:05 +00:00
/** \brief Implementation of the Lean frontend */
struct frontend : : imp {
2013-08-27 03:21:05 +00:00
typedef std : : pair < std : : vector < bool > , name > implicit_info ;
2013-08-14 23:35:04 +00:00
// Remark: only named objects are stored in the dictionary.
typedef std : : unordered_map < name , operator_info , name_hash , name_eq > operator_table ;
2013-08-26 16:04:17 +00:00
typedef std : : unordered_map < name , implicit_info , name_hash , name_eq > implicit_table ;
2013-09-03 17:09:19 +00:00
typedef std : : unordered_map < expr , list < operator_info > , expr_hash , std : : equal_to < expr > > expr_to_operators ;
2013-09-01 23:59:15 +00:00
typedef std : : unordered_map < expr_pair , expr , expr_pair_hash , expr_pair_eq > coercion_map ;
typedef std : : unordered_set < expr , expr_hash , std : : equal_to < expr > > coercion_set ;
2013-08-10 01:00:05 +00:00
std : : atomic < unsigned > m_num_children ;
std : : shared_ptr < imp > m_parent ;
environment m_env ;
2013-08-14 23:35:04 +00:00
operator_table m_nud ; // nud table for Pratt's parser
operator_table m_led ; // led table for Pratt's parser
2013-09-03 17:09:19 +00:00
expr_to_operators m_expr_to_operators ; // map denotations to operators (this is used for pretty printing)
2013-08-15 01:16:11 +00:00
implicit_table m_implicit_table ; // track the number of implicit arguments for a symbol.
2013-09-01 23:59:15 +00:00
coercion_map m_coercion_map ; // mapping from (given_type, expected_type) -> coercion
coercion_set m_coercion_set ; // Set of coercions
2013-08-20 19:19:28 +00:00
state m_state ;
2013-08-10 01:00:05 +00:00
bool has_children ( ) const { return m_num_children > 0 ; }
void inc_children ( ) { m_num_children + + ; }
void dec_children ( ) { m_num_children - - ; }
bool has_parent ( ) const { return m_parent ! = nullptr ; }
2013-08-15 01:16:11 +00:00
/** \brief Return the nud operator for the given symbol. */
operator_info find_nud ( name const & n ) const {
auto it = m_nud . find ( n ) ;
if ( it ! = m_nud . end ( ) )
return it - > second ;
else if ( has_parent ( ) )
return m_parent - > find_nud ( n ) ;
else
return operator_info ( ) ;
}
/** \brief Return the led operator for the given symbol. */
operator_info find_led ( name const & n ) const {
auto it = m_led . find ( n ) ;
if ( it ! = m_led . end ( ) )
return it - > second ;
else if ( has_parent ( ) )
return m_parent - > find_led ( n ) ;
else
return operator_info ( ) ;
}
/**
\ brief Return true if the given operator is defined in this
frontend object ( parent frontends are ignored ) .
*/
bool defined_here ( operator_info const & n , bool led ) const {
if ( led )
return m_led . find ( n . get_op_name ( ) ) ! = m_led . end ( ) ;
else
return m_nud . find ( n . get_op_name ( ) ) ! = m_nud . end ( ) ;
}
/** \brief Return the led/nud operator for the given symbol. */
operator_info find_op ( name const & n , bool led ) const {
return led ? find_led ( n ) : find_nud ( n ) ;
}
/** \brief Insert a new led/nud operator. */
void insert_op ( operator_info const & op , bool led ) {
if ( led )
insert ( m_led , op . get_op_name ( ) , op ) ;
else
insert ( m_nud , op . get_op_name ( ) , op ) ;
}
2013-08-20 00:25:15 +00:00
/** \brief Find the operator that is used as notation for the given expression. */
2013-09-03 17:09:19 +00:00
operator_info find_op_for ( expr const & e , bool unicode ) const {
auto it = m_expr_to_operators . find ( e ) ;
if ( it ! = m_expr_to_operators . end ( ) ) {
auto l = it - > second ;
for ( auto op : l ) {
if ( unicode | | op . is_safe_ascii ( ) )
return op ;
}
}
if ( has_parent ( ) )
return m_parent - > find_op_for ( e , unicode ) ;
2013-08-15 01:16:11 +00:00
else
return operator_info ( ) ;
}
2013-08-20 00:25:15 +00:00
/** \brief Remove all internal denotations that are associated with the given operator symbol (aka notation) */
2013-08-15 01:16:11 +00:00
void remove_bindings ( operator_info const & op ) {
2013-08-27 16:49:48 +00:00
for ( expr const & d : op . get_denotations ( ) ) {
2013-09-03 17:09:19 +00:00
if ( has_parent ( ) & & m_parent - > find_op_for ( d , true ) ) {
2013-08-20 00:25:15 +00:00
// parent has an association for d... we must hide it.
2013-09-03 17:09:19 +00:00
insert ( m_expr_to_operators , d , list < operator_info > ( operator_info ( ) ) ) ;
2013-08-15 01:16:11 +00:00
} else {
2013-09-03 17:09:19 +00:00
m_expr_to_operators . erase ( d ) ;
2013-08-15 01:16:11 +00:00
}
}
}
2013-09-03 17:09:19 +00:00
/** \brief Add a new entry d -> op in the mapping m_expr_to_operators */
void insert_expr_to_operator_entry ( expr const & d , operator_info const & op ) {
list < operator_info > & l = m_expr_to_operators [ d ] ;
l = cons ( op , l ) ;
}
2013-08-15 01:16:11 +00:00
/** \brief Register the new operator in the tables for parsing and pretty printing. */
2013-08-20 00:25:15 +00:00
void register_new_op ( operator_info new_op , expr const & d , bool led ) {
new_op . add_expr ( d ) ;
2013-08-15 01:16:11 +00:00
insert_op ( new_op , led ) ;
2013-09-03 17:09:19 +00:00
insert_expr_to_operator_entry ( d , new_op ) ;
2013-08-15 01:16:11 +00:00
}
2013-08-27 16:45:00 +00:00
/**
\ brief Two operator ( aka notation ) denotations are compatible
iff one of the following holds :
1 ) Both do not have implicit arguments
2 ) Both have implicit arguments , and the implicit arguments
occur in the same positions .
*/
bool compatible_denotation ( expr const & d1 , expr const & d2 ) {
return get_implicit_arguments ( d1 ) = = get_implicit_arguments ( d2 ) ;
}
/**
\ brief Return true iff the existing denotations ( aka
overloads ) for an operator op are compatible with the new
denotation d .
The compatibility is only an issue if implicit arguments are
used . If one of the denotations has implicit arguments , then
all of them should have implicit arguments , and the implicit
arguments should occur in the same positions .
*/
bool compatible_denotations ( operator_info const & op , expr const & d ) {
2013-08-27 16:49:48 +00:00
return std : : all_of ( op . get_denotations ( ) . begin ( ) , op . get_denotations ( ) . end ( ) , [ & ] ( expr const & prev_d ) { return compatible_denotation ( prev_d , d ) ; } ) ;
2013-08-27 16:45:00 +00:00
}
2013-08-15 01:16:11 +00:00
/**
\ brief Add a new operator and save information as object .
If the new operator does not conflict with existing operators ,
then we just register it .
If it conflicts , there are two options :
1 ) It is an overload ( we just add the internal name \ c n as
new option .
2 ) It is a real conflict , and report the issue in the
diagnostic channel , and override the existing operator ( aka notation ) .
*/
2013-08-20 00:25:15 +00:00
void add_op ( operator_info new_op , expr const & d , bool led ) {
2013-08-15 01:16:11 +00:00
name const & opn = new_op . get_op_name ( ) ;
operator_info old_op = find_op ( opn , led ) ;
2013-08-16 01:54:01 +00:00
if ( ! old_op ) {
2013-08-20 00:25:15 +00:00
register_new_op ( new_op , d , led ) ;
2013-08-15 01:16:11 +00:00
} else if ( old_op = = new_op ) {
2013-08-27 16:45:00 +00:00
if ( compatible_denotations ( old_op , d ) ) {
// overload
if ( defined_here ( old_op , led ) ) {
old_op . add_expr ( d ) ;
2013-09-03 17:09:19 +00:00
insert_expr_to_operator_entry ( d , old_op ) ;
2013-08-27 16:45:00 +00:00
} else {
// we must copy the operator because it was defined in
// a parent frontend.
new_op = old_op . copy ( ) ;
register_new_op ( new_op , d , led ) ;
}
2013-08-15 01:16:11 +00:00
} else {
2013-09-02 02:08:49 +00:00
diagnostic ( m_state ) < < " The denotation(s) for the existing notation: \n " < < old_op
< < " \n have been replaced with the new denotation: \n " < < d
< < " \n because they conflict on how implicit arguments are used. \n " ;
2013-08-27 16:45:00 +00:00
remove_bindings ( old_op ) ;
2013-08-20 00:25:15 +00:00
register_new_op ( new_op , d , led ) ;
2013-08-15 01:16:11 +00:00
}
} else {
2013-09-02 02:08:49 +00:00
diagnostic ( m_state ) < < " Notation has been redefined, the existing notation: \n " < < old_op
< < " \n has been replaced with: \n " < < new_op < < " \n because they conflict with each other. \n " ;
2013-08-15 01:16:11 +00:00
remove_bindings ( old_op ) ;
2013-08-20 00:25:15 +00:00
register_new_op ( new_op , d , led ) ;
2013-08-15 01:16:11 +00:00
}
2013-08-20 00:25:15 +00:00
m_env . add_neutral_object ( new notation_declaration ( new_op , d ) ) ;
2013-08-15 01:16:11 +00:00
}
2013-08-20 00:25:15 +00:00
void add_infix ( name const & opn , unsigned p , expr const & d ) { add_op ( infix ( opn , p ) , d , true ) ; }
void add_infixl ( name const & opn , unsigned p , expr const & d ) { add_op ( infixl ( opn , p ) , d , true ) ; }
void add_infixr ( name const & opn , unsigned p , expr const & d ) { add_op ( infixr ( opn , p ) , d , true ) ; }
void add_prefix ( name const & opn , unsigned p , expr const & d ) { add_op ( prefix ( opn , p ) , d , false ) ; }
void add_postfix ( name const & opn , unsigned p , expr const & d ) { add_op ( postfix ( opn , p ) , d , true ) ; }
void add_mixfixl ( unsigned sz , name const * opns , unsigned p , expr const & d ) { add_op ( mixfixl ( sz , opns , p ) , d , false ) ; }
void add_mixfixr ( unsigned sz , name const * opns , unsigned p , expr const & d ) { add_op ( mixfixr ( sz , opns , p ) , d , true ) ; }
void add_mixfixc ( unsigned sz , name const * opns , unsigned p , expr const & d ) { add_op ( mixfixc ( sz , opns , p ) , d , false ) ; }
2013-08-27 22:59:13 +00:00
void add_mixfixo ( unsigned sz , name const * opns , unsigned p , expr const & d ) { add_op ( mixfixo ( sz , opns , p ) , d , true ) ; }
2013-08-15 15:52:10 +00:00
2013-08-30 23:37:21 +00:00
expr mk_explicit_definition_body ( expr type , name const & n , unsigned i , unsigned sz ) {
if ( i = = sz ) {
buffer < expr > args ;
args . push_back ( mk_constant ( n ) ) ;
unsigned j = sz ;
while ( j > 0 ) { - - j ; args . push_back ( mk_var ( j ) ) ; }
return mk_app ( args . size ( ) , args . data ( ) ) ;
} else {
lean_assert ( is_pi ( type ) ) ;
return mk_lambda ( abst_name ( type ) , abst_domain ( type ) , mk_explicit_definition_body ( abst_body ( type ) , n , i + 1 , sz ) ) ;
}
}
2013-08-27 03:21:05 +00:00
void mark_implicit_arguments ( name const & n , unsigned sz , bool const * implicit ) {
2013-08-26 16:04:17 +00:00
if ( has_children ( ) )
throw exception ( sstream ( ) < < " failed to mark implicit arguments, frontend object is read-only " ) ;
object const & obj = m_env . get_object ( n ) ;
if ( obj . kind ( ) ! = object_kind : : Definition & & obj . kind ( ) ! = object_kind : : Postulate )
throw exception ( sstream ( ) < < " failed to mark implicit arguments, the object ' " < < n < < " ' is not a definition or postulate " ) ;
if ( has_implicit_arguments ( n ) )
throw exception ( sstream ( ) < < " the object ' " < < n < < " ' already has implicit argument information associated with it " ) ;
name explicit_version ( n , " explicit " ) ;
if ( m_env . find_object ( explicit_version ) )
throw exception ( sstream ( ) < < " failed to mark implicit arguments for ' " < < n < < " ', the frontend already has an object named ' " < < explicit_version < < " ' " ) ;
expr const & type = obj . get_type ( ) ;
unsigned num_args = 0 ;
expr it = type ;
while ( is_pi ( it ) ) { num_args + + ; it = abst_body ( it ) ; }
2013-08-27 03:21:05 +00:00
if ( sz > num_args )
throw exception ( sstream ( ) < < " failed to mark implicit arguments for ' " < < n < < " ', object has only " < < num_args < < " arguments, but trying to mark " < < sz < < " arguments " ) ;
std : : vector < bool > v ( implicit , implicit + sz ) ;
2013-08-26 16:04:17 +00:00
m_implicit_table [ n ] = mk_pair ( v , explicit_version ) ;
2013-08-30 23:37:21 +00:00
expr body = mk_explicit_definition_body ( type , n , 0 , sz ) ;
2013-08-26 16:04:17 +00:00
if ( obj . is_axiom ( ) | | obj . is_theorem ( ) ) {
2013-08-30 23:37:21 +00:00
m_env . add_theorem ( explicit_version , type , body ) ;
2013-08-26 16:04:17 +00:00
} else {
2013-08-30 23:37:21 +00:00
m_env . add_definition ( explicit_version , type , body ) ;
2013-08-26 16:04:17 +00:00
}
}
bool has_implicit_arguments ( name const & n ) {
if ( m_implicit_table . find ( n ) ! = m_implicit_table . end ( ) ) {
return true ;
} else if ( has_parent ( ) ) {
return m_parent - > has_implicit_arguments ( n ) ;
} else {
return false ;
}
}
2013-08-27 03:21:05 +00:00
std : : vector < bool > const & get_implicit_arguments ( name const & n ) {
2013-08-26 16:04:17 +00:00
auto it = m_implicit_table . find ( n ) ;
if ( it ! = m_implicit_table . end ( ) ) {
return it - > second . first ;
} else if ( has_parent ( ) ) {
return m_parent - > get_implicit_arguments ( n ) ;
} else {
return g_empty_vector ;
}
}
2013-08-27 16:45:00 +00:00
std : : vector < bool > const & get_implicit_arguments ( expr const & n ) {
if ( is_constant ( n ) )
return get_implicit_arguments ( const_name ( n ) ) ;
else
return g_empty_vector ;
}
2013-08-26 16:04:17 +00:00
name const & get_explicit_version ( name const & n ) {
auto it = m_implicit_table . find ( n ) ;
if ( it ! = m_implicit_table . end ( ) ) {
return it - > second . second ;
} else if ( has_parent ( ) ) {
return m_parent - > get_explicit_version ( n ) ;
} else {
return name : : anonymous ( ) ;
}
}
2013-09-07 00:58:45 +00:00
bool is_explicit ( name const & n ) {
return ! n . is_atomic ( ) & & get_explicit_version ( n . get_prefix ( ) ) = = n ;
}
2013-09-01 23:59:15 +00:00
void add_coercion ( expr const & f ) {
expr type = m_env . infer_type ( f ) ;
expr norm_type = m_env . normalize ( type ) ;
if ( ! is_arrow ( norm_type ) )
throw exception ( " invalid coercion declaration, a coercion must have an arrow type (i.e., a non-dependent functional type) " ) ;
expr from = abst_domain ( norm_type ) ;
expr to = abst_body ( norm_type ) ;
if ( from = = to )
throw exception ( " invalid coercion declaration, 'from' and 'to' types are the same " ) ;
2013-09-02 02:08:49 +00:00
if ( get_coercion_core ( from , to ) )
2013-09-01 23:59:15 +00:00
throw exception ( " invalid coercion declaration, frontend already has a coercion for the given types " ) ;
m_coercion_map [ expr_pair ( from , to ) ] = f ;
m_coercion_set . insert ( f ) ;
m_env . add_neutral_object ( new coercion_declaration ( f ) ) ;
}
2013-09-02 02:08:49 +00:00
expr get_coercion_core ( expr const & given_type , expr const & expected_type ) {
2013-09-01 23:59:15 +00:00
expr_pair p ( given_type , expected_type ) ;
auto it = m_coercion_map . find ( p ) ;
if ( it ! = m_coercion_map . end ( ) )
return it - > second ;
else if ( has_parent ( ) )
2013-09-02 02:08:49 +00:00
return m_parent - > get_coercion_core ( given_type , expected_type ) ;
2013-09-01 23:59:15 +00:00
else
return expr ( ) ;
}
2013-09-06 18:02:00 +00:00
expr get_coercion ( expr const & given_type , expr const & expected_type , context const & ctx ) {
expr norm_given_type = m_env . normalize ( given_type , ctx ) ;
expr norm_expected_type = m_env . normalize ( expected_type , ctx ) ;
2013-09-02 02:08:49 +00:00
return get_coercion_core ( norm_given_type , norm_expected_type ) ;
}
2013-09-01 23:59:15 +00:00
bool is_coercion ( expr const & f ) {
return m_coercion_set . find ( f ) ! = m_coercion_set . end ( ) ;
}
2013-08-24 23:11:35 +00:00
void set_interrupt ( bool flag ) {
m_env . set_interrupt ( flag ) ;
m_state . set_interrupt ( flag ) ;
}
2013-08-16 01:54:01 +00:00
imp ( frontend & fe ) :
2013-08-16 16:30:08 +00:00
m_num_children ( 0 ) {
2013-08-10 01:00:05 +00:00
}
explicit imp ( std : : shared_ptr < imp > const & parent ) :
m_num_children ( 0 ) ,
m_parent ( parent ) ,
2013-08-20 19:19:28 +00:00
m_env ( m_parent - > m_env . mk_child ( ) ) ,
m_state ( m_parent - > m_state ) {
2013-08-10 01:00:05 +00:00
m_parent - > inc_children ( ) ;
}
~ imp ( ) {
if ( m_parent )
m_parent - > dec_children ( ) ;
}
} ;
2013-09-17 21:42:44 +00:00
frontend : : frontend ( ) : m_ptr ( new imp ( * this ) ) {
import_all ( m_ptr - > m_env ) ;
2013-08-30 21:26:12 +00:00
init_builtin_notation ( * this ) ;
2013-09-17 21:42:44 +00:00
m_ptr - > m_state . set_formatter ( mk_pp_formatter ( * this ) ) ;
2013-08-20 19:19:28 +00:00
}
2013-09-17 21:42:44 +00:00
frontend : : frontend ( imp * new_ptr ) : m_ptr ( new_ptr ) {
m_ptr - > m_state . set_formatter ( mk_pp_formatter ( * this ) ) ;
2013-08-10 01:00:05 +00:00
}
2013-09-17 21:42:44 +00:00
frontend : : frontend ( std : : shared_ptr < imp > const & ptr ) : m_ptr ( ptr ) { }
2013-08-16 01:54:01 +00:00
frontend : : ~ frontend ( ) { }
2013-08-10 01:00:05 +00:00
2013-09-17 21:42:44 +00:00
frontend frontend : : mk_child ( ) const { return frontend ( new imp ( m_ptr ) ) ; }
bool frontend : : has_children ( ) const { return m_ptr - > has_children ( ) ; }
bool frontend : : has_parent ( ) const { return m_ptr - > has_parent ( ) ; }
frontend frontend : : parent ( ) const { lean_assert ( has_parent ( ) ) ; return frontend ( m_ptr - > m_parent ) ; }
2013-08-10 01:00:05 +00:00
2013-09-17 21:42:44 +00:00
environment const & frontend : : get_environment ( ) const { return m_ptr - > m_env ; }
2013-08-10 01:00:05 +00:00
2013-09-17 21:42:44 +00:00
level frontend : : add_uvar ( name const & n , level const & l ) { return m_ptr - > m_env . add_uvar ( n , l ) ; }
level frontend : : add_uvar ( name const & n ) { return m_ptr - > m_env . add_uvar ( n ) ; }
level frontend : : get_uvar ( name const & n ) const { return m_ptr - > m_env . get_uvar ( n ) ; }
2013-08-15 15:52:10 +00:00
2013-08-17 17:55:42 +00:00
void frontend : : add_definition ( name const & n , expr const & t , expr const & v , bool opaque ) {
2013-09-17 21:42:44 +00:00
return m_ptr - > m_env . add_definition ( n , t , v , opaque ) ;
2013-08-17 17:55:42 +00:00
}
2013-09-17 21:42:44 +00:00
void frontend : : add_theorem ( name const & n , expr const & t , expr const & v ) { return m_ptr - > m_env . add_theorem ( n , t , v ) ; }
void frontend : : add_definition ( name const & n , expr const & v , bool opaque ) { return m_ptr - > m_env . add_definition ( n , v , opaque ) ; }
void frontend : : add_axiom ( name const & n , expr const & t ) { return m_ptr - > m_env . add_axiom ( n , t ) ; }
void frontend : : add_var ( name const & n , expr const & t ) { return m_ptr - > m_env . add_var ( n , t ) ; }
object const & frontend : : get_object ( name const & n ) const { return m_ptr - > m_env . get_object ( n ) ; }
object const & frontend : : find_object ( name const & n ) const { return m_ptr - > m_env . find_object ( n ) ; }
bool frontend : : has_object ( name const & n ) const { return m_ptr - > m_env . has_object ( n ) ; }
frontend : : object_iterator frontend : : begin_objects ( ) const { return m_ptr - > m_env . begin_objects ( ) ; }
frontend : : object_iterator frontend : : end_objects ( ) const { return m_ptr - > m_env . end_objects ( ) ; }
frontend : : object_iterator frontend : : begin_local_objects ( ) const { return m_ptr - > m_env . begin_local_objects ( ) ; }
frontend : : object_iterator frontend : : end_local_objects ( ) const { return m_ptr - > m_env . end_local_objects ( ) ; }
void frontend : : add_infix ( name const & opn , unsigned p , expr const & d ) { m_ptr - > add_infix ( opn , p , d ) ; }
void frontend : : add_infixl ( name const & opn , unsigned p , expr const & d ) { m_ptr - > add_infixl ( opn , p , d ) ; }
void frontend : : add_infixr ( name const & opn , unsigned p , expr const & d ) { m_ptr - > add_infixr ( opn , p , d ) ; }
void frontend : : add_prefix ( name const & opn , unsigned p , expr const & d ) { m_ptr - > add_prefix ( opn , p , d ) ; }
void frontend : : add_postfix ( name const & opn , unsigned p , expr const & d ) { m_ptr - > add_postfix ( opn , p , d ) ; }
void frontend : : add_mixfixl ( unsigned sz , name const * opns , unsigned p , expr const & d ) { m_ptr - > add_mixfixl ( sz , opns , p , d ) ; }
void frontend : : add_mixfixr ( unsigned sz , name const * opns , unsigned p , expr const & d ) { m_ptr - > add_mixfixr ( sz , opns , p , d ) ; }
void frontend : : add_mixfixc ( unsigned sz , name const * opns , unsigned p , expr const & d ) { m_ptr - > add_mixfixc ( sz , opns , p , d ) ; }
void frontend : : add_mixfixo ( unsigned sz , name const * opns , unsigned p , expr const & d ) { m_ptr - > add_mixfixo ( sz , opns , p , d ) ; }
operator_info frontend : : find_op_for ( expr const & n , bool unicode ) const { return m_ptr - > find_op_for ( n , unicode ) ; }
operator_info frontend : : find_nud ( name const & n ) const { return m_ptr - > find_nud ( n ) ; }
operator_info frontend : : find_led ( name const & n ) const { return m_ptr - > find_led ( n ) ; }
void frontend : : mark_implicit_arguments ( name const & n , unsigned sz , bool const * implicit ) { m_ptr - > mark_implicit_arguments ( n , sz , implicit ) ; }
2013-08-27 03:21:05 +00:00
void frontend : : mark_implicit_arguments ( name const & n , std : : initializer_list < bool > const & l ) { mark_implicit_arguments ( n , l . size ( ) , l . begin ( ) ) ; }
2013-09-17 21:42:44 +00:00
bool frontend : : has_implicit_arguments ( name const & n ) const { return m_ptr - > has_implicit_arguments ( n ) ; }
std : : vector < bool > const & frontend : : get_implicit_arguments ( name const & n ) const { return m_ptr - > get_implicit_arguments ( n ) ; }
name const & frontend : : get_explicit_version ( name const & n ) const { return m_ptr - > get_explicit_version ( n ) ; }
bool frontend : : is_explicit ( name const & n ) const { return m_ptr - > is_explicit ( n ) ; }
2013-08-26 16:04:17 +00:00
2013-09-17 21:42:44 +00:00
void frontend : : add_coercion ( expr const & f ) { m_ptr - > add_coercion ( f ) ; }
2013-09-06 18:02:00 +00:00
expr frontend : : get_coercion ( expr const & given_type , expr const & expected_type , context const & ctx ) const {
2013-09-17 21:42:44 +00:00
return m_ptr - > get_coercion ( given_type , expected_type , ctx ) ;
2013-09-06 18:02:00 +00:00
}
2013-09-17 21:42:44 +00:00
bool frontend : : is_coercion ( expr const & f ) const { return m_ptr - > is_coercion ( f ) ; }
2013-09-01 23:59:15 +00:00
2013-09-17 21:42:44 +00:00
state const & frontend : : get_state ( ) const { return m_ptr - > m_state ; }
state & frontend : : get_state_core ( ) { return m_ptr - > m_state ; }
void frontend : : set_options ( options const & opts ) { return m_ptr - > m_state . set_options ( opts ) ; }
void frontend : : set_regular_channel ( std : : shared_ptr < output_channel > const & out ) { return m_ptr - > m_state . set_regular_channel ( out ) ; }
void frontend : : set_diagnostic_channel ( std : : shared_ptr < output_channel > const & out ) { return m_ptr - > m_state . set_diagnostic_channel ( out ) ; }
2013-08-24 23:11:35 +00:00
2013-09-17 21:42:44 +00:00
void frontend : : set_interrupt ( bool flag ) { m_ptr - > set_interrupt ( flag ) ; }
2013-08-10 01:00:05 +00:00
}