예제 #1
0
 /// <summary>
 /// Evaluates the expression and answers information about the method </summary>
 /// <param name="context"> used to resolve properties (<code>base.property</code> and <code>base[property]</code>) </param>
 /// <returns> method information or <code>null</code> for literal expressions </returns>
 /// <exception cref="ELException"> if evaluation fails (e.g. suitable method not found) </exception>
 public override MethodInfo GetMethodInfo(ELContext context)
 {
     return(node.GetMethodInfo(bindings, context, type, types));
 }