AjScript.Tests.Interpreter.ParserTests.ParseCommands C# (CSharp) Method

ParseCommands() private static method

private static ParseCommands ( string text ) : ICommand
text string
return ICommand
        private static ICommand ParseCommands(string text)
        {
            Parser parser = CreateParser(text);
            return parser.ParseCommands();
        }
ParserTests