From f281a1e83895f7e9e7afb6c3756ab3a0157d54a9 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Tue, 21 Oct 2008 06:50:48 -0400 Subject: [PATCH] set up module ignoring in command line tool --- src/CommandLineInterface.hx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/CommandLineInterface.hx b/src/CommandLineInterface.hx index 43f5464..03618ec 100644 --- a/src/CommandLineInterface.hx +++ b/src/CommandLineInterface.hx @@ -30,8 +30,9 @@ class CommandLineInterface { parser.load_processors_from_resources(); var results = parser.parse(code); + var ignored_modules = parser.ignored_modules; - var version_info = new CodeVersionInformation(results); + var version_info = new CodeVersionInformation(results, ignored_modules); neko.Lib.print("Your code in " + arguments[0] + " requires the following minimum PHP & PECL module versions:\n");