diff --git a/library/init/env_ext.lean b/library/init/env_ext.lean deleted file mode 100644 index c5d227e461..0000000000 --- a/library/init/env_ext.lean +++ /dev/null @@ -1,52 +0,0 @@ -prelude - -/- -Environment extensions: - -- private - * unsigned mCounter - * NameMap mInvMap; // map: hidden-Name -> user-Name (for pretty printing purposes) it is serialized - * NameSet mPrivatePrefixes; // transient (it is used for registerPrivateName) - -- protected - * NameSet mProtected; - -- exportDecl: it is used to implement the `export` command - * NameMap> mNsMap; // mapping from namespace to "export Declaration" - -- auxRecursors - * NameSet mAuxRecursorSet; - * NameSet mNoConfusionSet; - -- aliases: this is a transient object used during elaboration. We use it to store the mappings (user-facing-Name -> private Name); implementing `open` command; simulating `section` parameters; etc. - * Bool mInSection; - * NameMap mAliases; - * NameMap mInvAliases; - * NameMap mLevelAliases; - * NameMap mInvLevelAliases; - * NameMap mLocalRefs; - -- projection: it will be deleted - -- user attributes: - * NameMap mAttrs; - -- scopedExt: a general purpose scoped extension. It is used to implement - * Parser/scanner tables - * attributeManager (do we need them? we can try to keep user attributes only) - * elaboration strategy - * user commands - * use annonymous Constructor when pretty printing - * "parsing-only" - * reducibility annotations - * [inline] - * [pattern] - * [class] - * [instance] - * [recursor] - * activeExportDecls - * class - * userRecursors - * NameMap mRecursors; - * NameMap mType2Recursors; --/