rename 'package' to 'module'
[nit.git] / src / global / reachable_method_analysis.nit
index a7ac075..d726501 100644 (file)
@@ -15,7 +15,7 @@
 # limitations under the License.
 
 # Module containing all bases for the reachable method analysis
-package reachable_method_analysis
+module reachable_method_analysis
 
 import icode
 import program
@@ -50,7 +50,7 @@ end
 # Subclasses of this class would represent an analysis that produces
 # at least a way of knowing if a property is reachable from the entry
 # point of the program
-class ReachableMethodAnalysis
+interface ReachableMethodAnalysis
        fun is_iroutine_reachable(ir: nullable IRoutine): Bool is abstract
        fun is_method_reachable(method: MMMethod): Bool is abstract
 end