chore(frontends/lean/elaborator): rename attribute [elab_default] ==> [elab_simple]

This commit is contained in:
Leonardo de Moura 2016-09-14 09:42:30 -07:00
parent 83cc67ba67
commit b426119e83

View file

@ -2349,14 +2349,14 @@ void initialize_elaborator() {
register_system_attribute(
elaborator_strategy_proxy_attribute(
"elab_default",
"elab_simple",
"instructs elaborator that the arguments of the function application (f ...) "
"should be elaborated from left to right, and without propagating information from the expected type "
"to its arguments",
elaborator_strategy::Default));
register_incompatible("elab_default", "elab_with_expected_type");
register_incompatible("elab_default", "elab_as_eliminator");
register_incompatible("elab_simple", "elab_with_expected_type");
register_incompatible("elab_simple", "elab_as_eliminator");
register_incompatible("elab_with_expected_type", "elab_as_eliminator");
}