emitMethodCall(method, expr, targetType, flags);
}
private void emitMethodCall(final Expression target, final MethodInfo method, final MethodCallExpression expr, final int flags) {
// Emit instance, if calling an instance method
Type targetType = null;
if (!method.isStatic()) {
targetType = target.getType();
emitExpression(target);
}