src/main/java/org/apache/commons/ognl/ASTNotIn.java [58:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toGetSourceString( OgnlContext context, Object target )
    {
        try
        {
            String result = "(! org.apache.commons.ognl.OgnlOps.in( ($w) ";

            result +=
                OgnlRuntime.getChildSource( context, target, children[0] ) + ", ($w) "
                    + OgnlRuntime.getChildSource( context, target, children[1] );

            result += ") )";

            context.setCurrentType( Boolean.TYPE );

            return result;
        }
        catch ( NullPointerException e )
        {

            // expected to happen in some instances
            e.printStackTrace();

            throw new UnsupportedCompilationException( "evaluation resulted in null expression." );
        }
        catch ( Throwable t )
        {
            throw OgnlOps.castToRuntime( t );
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/commons/ognl/ASTIn.java [59:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toGetSourceString( OgnlContext context, Object target )
    {
        try
        {
            String result = "org.apache.commons.ognl.OgnlOps.in( ($w) ";

            result +=
                OgnlRuntime.getChildSource( context, target, children[0] ) + ", ($w) "
                    + OgnlRuntime.getChildSource( context, target, children[1] );

            result += ")";

            context.setCurrentType( Boolean.TYPE );

            return result;
        }
        catch ( NullPointerException e )
        {

            // expected to happen in some instances
            e.printStackTrace();

            throw new UnsupportedCompilationException( "evaluation resulted in null expression." );
        }
        catch ( Throwable t )
        {
            throw OgnlOps.castToRuntime( t );
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



