AjScript.Tests.Interpreter.ParserTests.ParseCommands C# (CSharp) Méthode

ParseCommands() private static méthode

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