Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maybeDecorateGroovyCallSite (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallSiteDecorator.java

     * in order to alter their behavior.
     */
    @NonNullApi
    public interface CallSiteDecorator {
        CallSite maybeDecorateGroovyCallSite(CallSite originalCallSite);
    
        java.lang.invoke.CallSite maybeDecorateIndyCallSite(java.lang.invoke.CallSite originalCallSite, MethodHandles.Lookup caller, String callType, String name, int flags);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 27 13:58:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

         * @return the new CallSite capable of intercepting calls or the original CallSite if interception not neccessary.
         */
        @Override
        public CallSite maybeDecorateGroovyCallSite(CallSite originalCallSite) {
            if (shouldDecorate(originalCallSite)) {
                return new DecoratingCallSite(originalCallSite);
            }
            return originalCallSite;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            for (CallSite callSite : array.array) {
                array.array[callSite.getIndex()] = getGroovyCallDecorator(interceptorFilter).maybeDecorateGroovyCallSite(callSite);
            }
        }
    
        /**
         * The bootstrap method for method calls from Groovy compiled code with indy enabled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top