29 lines
872 B
Text
29 lines
872 B
Text
/-
|
|
Copyright (c) 2019 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
Authors: Leonardo de Moura
|
|
-/
|
|
import Lean.Elab.Import
|
|
import Lean.Elab.Exception
|
|
import Lean.Elab.Command
|
|
import Lean.Elab.Term
|
|
import Lean.Elab.App
|
|
import Lean.Elab.Binders
|
|
import Lean.Elab.LetRec
|
|
import Lean.Elab.Frontend
|
|
import Lean.Elab.BuiltinNotation
|
|
import Lean.Elab.Declaration
|
|
import Lean.Elab.Tactic
|
|
import Lean.Elab.Match
|
|
-- HACK: must come after `Match` because builtin elaborators (for `match` in this case) do not take priorities
|
|
import Lean.Elab.Quotation
|
|
import Lean.Elab.Syntax
|
|
import Lean.Elab.Do
|
|
import Lean.Elab.StructInst
|
|
import Lean.Elab.Inductive
|
|
import Lean.Elab.Structure
|
|
import Lean.Elab.Print
|
|
import Lean.Elab.MutualDef
|
|
import Lean.Elab.PreDefinition
|
|
import Lean.Elab.Deriving
|
|
import Lean.Elab.DeclarationRange
|