Mono.Debugger.Frontend.ExpressionParser.Parse C# (CSharp) Method

Parse() public method

public Parse ( string text ) : Mono.Debugger.ExpressionEvaluator.IExpression
text string
return Mono.Debugger.ExpressionEvaluator.IExpression
        public EE.IExpression Parse(string text)
        {
            return new ExpressionWrapper (this, parser.Parse (text));
        }