From 641d953f05200d2da6ba7766374e6c1b1fc9bd99 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Thu, 20 Mar 2014 21:01:08 -0400 Subject: [PATCH] src: rename `nitdbg_commons` as `debugger_commons` the `nit` prefix is reserved for commands. Signed-off-by: Jean Privat --- src/{nitdbg_commons.nit => debugger_commons.nit} | 2 +- src/netdbg.nit | 2 +- src/nit.nit | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) rename src/{nitdbg_commons.nit => debugger_commons.nit} (98%) mode change 100755 => 100644 src/network_debugger.nit diff --git a/src/nitdbg_commons.nit b/src/debugger_commons.nit similarity index 98% rename from src/nitdbg_commons.nit rename to src/debugger_commons.nit index c66637d..e2e9dc3 100644 --- a/src/nitdbg_commons.nit +++ b/src/debugger_commons.nit @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -module nitdbg_commons +module debugger_commons import modelbuilder import frontend diff --git a/src/netdbg.nit b/src/netdbg.nit index edfe1af..50e64b7 100755 --- a/src/netdbg.nit +++ b/src/netdbg.nit @@ -18,7 +18,7 @@ module netdbg import network_debugger -import nitdbg_commons +import debugger_commons redef class InterpretCommons diff --git a/src/network_debugger.nit b/src/network_debugger.nit old mode 100755 new mode 100644 diff --git a/src/nit.nit b/src/nit.nit index 91a2fcd..ad1a388 100644 --- a/src/nit.nit +++ b/src/nit.nit @@ -19,7 +19,7 @@ module nit import naive_interpreter import debugger -import nitdbg_commons +import debugger_commons redef class InterpretCommons @@ -39,4 +39,4 @@ redef class InterpretCommons end -(new InterpretCommons).launch \ No newline at end of file +(new InterpretCommons).launch -- 1.7.9.5