1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00

Rename Abstract.Interpreter.Tracing to Analysis.Abstract.Tracing.

This commit is contained in:
Rob Rix 2017-11-30 18:57:56 -05:00
parent c3f8107046
commit f1e5080c69
2 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ library
-- Analyses & term annotations
Abstract.Interpreter
, Abstract.Interpreter.Caching
, Abstract.Interpreter.Tracing
, Analysis.Abstract.Dead
, Analysis.Abstract.Tracing
, Analysis.ConstructorName
, Analysis.CyclomaticComplexity
, Analysis.Decorator

View File

@ -1,5 +1,5 @@
{-# LANGUAGE AllowAmbiguousTypes, DataKinds, FlexibleContexts, FlexibleInstances, MultiParamTypeClasses, ScopedTypeVariables, TypeApplications, TypeFamilies, TypeOperators, UndecidableInstances #-}
module Abstract.Interpreter.Tracing where
module Analysis.Abstract.Tracing where
import Abstract.Interpreter
import Control.Effect