Rename Scope2 to Review.Scope

This commit is contained in:
Jeroen Engels 2020-03-27 18:35:53 +01:00
parent baafd04810
commit 9328872aa6
5 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ import Elm.Syntax.Expression exposing (Expression(..))
import Elm.Syntax.Module as Module exposing (Module)
import Elm.Syntax.Node as Node exposing (Node)
import Review.Rule as Rule exposing (Direction, Error, Rule)
import Scope2 as Scope
import Review.Scope as Scope
type alias Context =

View File

@ -21,7 +21,7 @@ import Elm.Syntax.Node as Node exposing (Node)
import Elm.Syntax.Signature exposing (Signature)
import Elm.Syntax.TypeAnnotation as TypeAnnotation exposing (TypeAnnotation)
import Review.Rule as Rule exposing (Direction, Error, Rule)
import Scope2 as Scope
import Review.Scope as Scope
import Set exposing (Set)

View File

@ -24,7 +24,7 @@ import Elm.Syntax.Node as Node exposing (Node(..))
import Elm.Syntax.Range exposing (Range)
import Elm.Syntax.TypeAnnotation as TypeAnnotation exposing (TypeAnnotation)
import Review.Rule as Rule exposing (Error, Rule)
import Scope2 as Scope
import Review.Scope as Scope
import Set exposing (Set)

View File

@ -1,4 +1,4 @@
module Scope2 exposing
module Review.Scope exposing
( ModuleContext, addModuleVisitors, initialModuleContext
, ProjectContext, addProjectVisitors
, initialProjectContext, fromProjectToModule, fromModuleToProject, foldProjectContexts

View File

@ -1,4 +1,4 @@
module Scope2Test exposing (all)
module Review.ScopeTest exposing (all)
import Dependencies
import Elm.Syntax.Declaration as Declaration exposing (Declaration)
@ -7,8 +7,8 @@ import Elm.Syntax.Node as Node exposing (Node(..))
import Elm.Syntax.TypeAnnotation as TypeAnnotation exposing (TypeAnnotation)
import Review.Project as Project exposing (Project)
import Review.Rule as Rule exposing (Error, Rule)
import Review.Scope as Scope
import Review.Test
import Scope2 as Scope
import Test exposing (Test, test)