refactor(kernel/environment): intro_rule ==> constructor

Lean is a programming language
This commit is contained in:
Leonardo de Moura 2018-06-01 15:35:02 -07:00
parent 909284dd74
commit 8ff6ac9e0f

View file

@ -100,12 +100,12 @@ public:
bool is_descendant(environment_id const & id) const;
};
typedef expr intro_rule;
typedef expr constructor;
struct inductive_decl {
name m_name;
expr m_type;
list<intro_rule> m_intro_rules;
list<constructor> m_constructors;
};
struct inductive_decls {