src: create groups for related things
[nit.git] / src / frontend.nit
diff --git a/src/frontend.nit b/src/frontend.nit
deleted file mode 100644 (file)
index cfdf85b..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-# This file is part of NIT ( http://www.nitlanguage.org ).
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# Collect and orchestration of main frontend phases
-module frontend
-
-import simple_misc_analysis
-import literal
-import modelize
-import semantize
-import div_by_zero
-import cached
-import serialization_phase
-import check_annotation
-
-redef class ToolContext
-       # FIXME: there is conflict in linex in nitc, so use this trick to force invocation
-       private var dummy: Bool = do_dummy
-       fun do_dummy: Bool
-       do
-               # Force easy warnings after modelbuilder
-               phases.add_edge(simple_misc_analysis_phase, modelize_property_phase)
-               # Force easy warnings before intraproc-errors
-               phases.add_edge(scope_phase, simple_misc_analysis_phase)
-               # Code genrated by the serialization phase must be analyzed for literals
-               phases.add_edge(literal_phase, serialization_phase_pre_model)
-               phases.add_edge(modelize_class_phase, serialization_phase_pre_model)
-               return true
-       end
-end