fix(library/explicit): annotation name
This commit is contained in:
parent
80ddb0e706
commit
af0f8bcd29
1 changed files with 4 additions and 4 deletions
|
|
@ -36,10 +36,10 @@ bool is_as_atomic(expr const & e) { return is_annotation(e, *g_as_atomic_name);
|
|||
expr const & get_as_atomic_arg(expr const & e) { lean_assert(is_as_atomic(e)); return get_annotation_arg(e); }
|
||||
|
||||
void initialize_explicit() {
|
||||
g_explicit_name = new name("@@");
|
||||
g_partial_explicit_name = new name("@");
|
||||
g_as_atomic_name = new name("as_atomic");
|
||||
g_as_is_name = new name("as_is");
|
||||
g_explicit_name = new name("@");
|
||||
g_partial_explicit_name = new name("@@");
|
||||
g_as_atomic_name = new name("as_atomic");
|
||||
g_as_is_name = new name("as_is");
|
||||
|
||||
register_annotation(*g_explicit_name);
|
||||
register_annotation(*g_partial_explicit_name);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue