Mono.Debugger.Frontend.ExpressionParser.DoParseExpression C# (CSharp) Метод

DoParseExpression() защищенный Метод

protected DoParseExpression ( ScriptingContext context, LocationType type, string arg ) : SourceLocation
context ScriptingContext
type LocationType
arg string
Результат Mono.Debugger.SourceLocation
        protected SourceLocation DoParseExpression(ScriptingContext context,
							    LocationType type, string arg)
        {
            F.Expression expr = context.ParseExpression (arg);
            MethodExpression mexpr = expr.ResolveMethod (context, type);

            if (mexpr != null)
                return mexpr.EvaluateSource (context);
            else
                return context.FindMethod (arg);
        }