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

CreateParser() private static method

private static CreateParser ( string text ) : Parser
text string
return AjScript.Interpreter.Parser
        private static Parser CreateParser(string text)
        {
            return new Parser(text);
        }
ParserTests